pancake@nopcode.org [Fri, 11 Feb 2011 10:25:46 +0100] rev 18
* Lot of fixups and code cleanups
pancake@nopcode.org [Fri, 11 Feb 2011 02:15:04 +0100] rev 17
* Fix tree structure (some nodes was lost)
* Add endch extra information on each node
* Use parse as default action
pancake@flubox [Tue, 03 Nov 2009 16:30:52 +0100] rev 16
* Remove unnecesary force flag in parse_pushword ()
* Fix a bug while parsing null strings and empty words
pancake@flubox [Tue, 03 Nov 2009 16:14:36 +0100] rev 15
* Minor syntax and warning fixups
pancake@localhost.localdomain [Thu, 03 Sep 2009 19:52:07 +0000] rev 14
* Some code simplification (-34 LOC)
* Added 't/relang' as a draft specification for it
pancake@localhost.localdomain [Thu, 03 Sep 2009 10:03:36 +0000] rev 13
* Do reads on filedescriptors using blocks of 1024 bytes
- 4-5 times faster
- Use memory pools to allocate N nodes in a shot
- Faster, cleaner and easily freedable
- Implement and use alt_tree_free()
* Added node type 'operator'.
- Show node type in tree walk (alt -t)
* Added some syntax tests in t/hello.alt
pancake@localhost.localdomain [Fri, 28 Aug 2009 14:09:27 +0000] rev 12
* Fix parser with comments and ops
- Added new chars to be handled as ops !~<>
- Multiline comments are now handled as operators
- Extended t/ops.alt test file
pancake@localhost.localdomain [Fri, 28 Aug 2009 00:12:45 +0000] rev 11
* Correctly parse and identify the 'operator' words
- Fixes the use of =, += , ... expressions without spaces
- Added test file: t/op.alt
* Added locdiff in makefile
pancake@localhost.localdomain [Thu, 27 Aug 2009 18:04:01 +0000] rev 10
* Identify each tree node with a type of word
word, string, integer, float, operator?
* Debug is now optional and configurable in runtime
* Added flags to main() (-p parse, -t trace, else run)
* New syntax for variables '$', functions are now not starting with '.'
- Update hello.alt example
pancake@localhost.localdomain [Wed, 26 Aug 2009 19:31:15 +0000] rev 9
* Added script.c that executes the ast tree generated by tree.c
* Move some stuff from tree.c to alt.h
* Extend the basic t/hello.alt