README.TXT 719 B

1234567891011121314151617181920212223
  1. This is a package that contains a Javascript Scanner/parser/Syntax tree.
  2. The following units are defined:
  3. jsbase: the definition of Javascript values. Used to represent constant values.
  4. jstree: The Javascript syntax tree elements. Used in the parser to describe a source program
  5. jsscanner: the Javascript scanner. Currently not yet unicode-enabled.
  6. jsparser: the Javascript parser. Builds a complete javascript syntax tree.
  7. The tests directory contains a set of FPCUnit tests to test the scanner and parser.
  8. It needs Lazarus to run.
  9. Todo:
  10. - Add more tests.
  11. - Unicode support.
  12. - Runtime-engine ?
  13. The idea for the tree elements and the parser come from the Libsee library,
  14. written by David Leonard.
  15. Enjoy!
  16. Michael.