summaryrefslogtreecommitdiff
path: root/test/files/run/macro-range.flags
Commit message (Collapse)AuthorAgeFilesLines
* Added languageFeature annotation (was missing before). Resolved problem with ↵Martin Odersky2012-04-131-1/+1
| | | | late loading of nested classes in Definitions. Resolved handling of deprecated idents `then` and `macro`. Massaged test flags.
* Progress with macrosEugene Burmako2012-01-201-0/+1
A short recap: * Macro expansion now works finely for instance macro invocations * Macros are now hidden behind -Xmacros * Bodies of macros now have "import _context._" in their preamble * Macros are now loaded from classpath, much like regular libraries * Macros can now override methods (in that case macro expansion does not crash if macro is not found, it just falls back to super) Review by @odersky.