A problem that i have seen is that many tools come in 2 forms, those that simply scan and match patterns using regular expressions and those that attempt to be more accurate and use the target languages grammar to build an AST so they can take action on the different token types.
The former approprach has some but is not limited to problems like the following:
- Class and method names because in some languages they share the same case-ness. C# but not java
- In java its difficult to determine package/method/variables because they all are lowercase. While you can take extra measures such as its a method if a parenthesis follows the letters its at best an educated guess.
The one weakness of the later approach (the ast one) is that it cant handle fragments - eg an expression, they pretty much want a complete class.
Do people here like Class and methods to be highlighted or in their own colours ? Does it not matter ?