Summary: | Sourcewindow parses comments as variables | ||
---|---|---|---|
Product: | frysk | Reporter: | Mike Cvet <mcvet> |
Component: | general | Assignee: | Rick Moseley <rmoseley> |
Status: | RESOLVED FIXED | ||
Severity: | normal | ||
Priority: | P2 | ||
Version: | unspecified | ||
Target Milestone: | --- | ||
Host: | Target: | ||
Build: | Last reconfirmed: | ||
Bug Depends on: | |||
Bug Blocks: | 1633, 3392 | ||
Attachments: | A look at the text |
Description
Mike Cvet
2006-11-12 20:24:51 UTC
Created attachment 1415 [details]
A look at the text
Also appears to print: <AST>:0:0: unexpected end of subtree <AST>:0:0: unexpected end of subtree Futher down, may highlight the '++' of a variable increment such as 'a++;' red instead of green. This was an error in CDTParser.java where the callbacks were being called for symbols/variables found inside of #include files which were inside #include files. Now the symbol being returned is checked against the current line being parsed in the source file and if it is not there, the callback immediately returns with no marking up being done. |