|
||||||||
|
This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrators For more information on JIRA, see: http://www.atlassian.com/software/jira |
||||||||
_______________________________________________ weld-issues mailing list [email protected] https://lists.jboss.org/mailman/listinfo/weld-issues

I like the idea, but this is not simple to implement. Introducing a dependency on Javassist (or similar) only for this is a bit much, don't you think? Also, Javassist apparently doesn't give you the line number where the field is declared (it can give you line numbers of methods, though).
Even if we settle on not having line numbers, there are still certain rare cases where we can't even determine the name of the file the class is declared in (think about a non-public non-inner class declared in a file with a different name):
public SomeClass { } SomeOtherClass { }