How can I find the list of comment/annotations (not sure if that's the correct terminology), of the form:
#@UndefinedVariable, #@ReservedAssignment, etc.? I've been using them via Eclipse's Quick Fix menu, but I'd like to educate myself about it a bit better.
My apologies if this has already been answered. I've searched for a while to no avail.
Thanks,
Gabor
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
How can I find the list of comment/annotations (not sure if that's the correct terminology), of the form:
#@UndefinedVariable, #@ReservedAssignment, etc.? I've been using them via Eclipse's Quick Fix menu, but I'd like to educate myself about it a bit better.
My apologies if this has already been answered. I've searched for a while to no avail.
Thanks,
Gabor
Hi Gabor,
See: https://github.com/aptana/Pydev/blob/master/plugins/com.python.pydev.analysis/src/com/python/pydev/analysis/IAnalysisPreferences.java
Unfortunately there's no better documentation (but the code should be easy to follow).
Cheers,
Fabio
Thank you, Fabio!