I think octal literals are Very Dangerous Things™, and I'd like them to be glaringly obvious whenever I read source codes.

There must be a way to do this in Eclipse, right?


So it looks like standard Eclipse cannot be configured to do this? A custom colorer is required?

link|improve this question

67% accept rate
1  
I'd like to know this too. stackoverflow.com/questions/1705645/… – jjnguy Mar 7 '10 at 22:21
See also stackoverflow.com/questions/746031/… – trashgod Mar 7 '10 at 22:58
feedback

2 Answers

up vote 4 down vote accepted

No, currently you can only configure a color for all Numbers in Preferences > Java > Editor > Syntax Coloring. May I suggest creating an enhancement request at the Eclipse Bugzilla at http://bugs.eclipse.org/ (correct project is imho JDT / text)?

link|improve this answer
@polygenelubricants if you do post an enhancement request, please put a link to it, here. – MatrixFrog Apr 11 '10 at 23:25
feedback

On mine, 09 is an error. JLS§3.10

Yes, but something like 012345 isn't.

Ah, this is an excellent point, but it seems isomorphic to the problem of highlighting any numeric literal, which is supported as an editor preference. In Java, this is enhanced by the convention of using all capital letters for the identifiers of immutable constants. I would argue that all numeric literals be treated with equal suspicion.

link|improve this answer
1  
Yes, but something like 012345 isn't. – polygenelubricants Mar 7 '10 at 22:23
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.