> I'm thinking aloud, so bear with me! I think that an "a_1." would be > sintatically incorrect except if you can find a variable elsewhere a_1, right?
The problem is that during the lexical analysis variable information is not yet available. Parsing a_1 different depending on the context would be extremely dangerous (the exact same code could mean two entirely different things depending on where you type it) and in many case not be possible (the refactoring engine needs to be able to parse code without knowing the context). Lukas -- Lukas Renggli http://www.lukas-renggli.ch _______________________________________________ Pharo-project mailing list [email protected] http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-project
