Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  • Interfaces, a la Java. Yup multiple inheritance of interface types.
  • Mutually dependent packages, finally!
  • Dot notation for tagged types (that's classes in C++/Java speak), this makes it a bit less clumsy, so instead of typing:
Code Block

ANTLR.Lexer.Match(Self, 'A');

we can write

Code Block

Self.Match('A');

which is a bit nicer.