I looked through it just a bit, but couldn't find anything immediately useful. One thing I thought of was that it does give the line number, so you could use the generator to generate code for each object individually and compare the output of the generator to the content of the line number given. Presumably a "Contains" would be sufficient and broad enough that you could just use
Generator.GenerateCodeFromExpression(invokeResult,...) just before trying to turn the expression into a specific kind of statement (inside of GenerateRules). Of course, multiple rules might contain the same text, but we're only looking for errors, so wherever that text is, it's probably equally wrong. Or you could use the text from specific statements, but that gets a bit hairy when combining ifs, ands, ors, etc.
Presumably this would only be done when an error is found, and only for the sprites or plans that errors were found in.
Edit: I got a mockup of this working. I added a bad rule to a sprite, it found the correct sprite and the correct rule. Then as I was browsing I found the SpriteRuleRow has a RowError property, which I set to the text of the error. I'm sure something more useful could be done instead, but fancy enough, it actually works. I was then able to check HasErrors inside of PopulateRules in SpriteDefinition.cs and set the text color to red. I'm pretty impressed at how that all just worked! Must be a sign of a well-designed application

. The next step would be to change the error display into something that can contain links to the bad rules.