log modules/parser.tp @ 245:3590ecca6bc9

age author description
Mon, 06 Jan 2014 01:03:18 -0800 Mike Pavone Fix handling of unescaped tabs in string literals in new parser
Mon, 06 Jan 2014 00:48:19 -0800 Mike Pavone Improve compatibility of new parser with the old one
Sun, 05 Jan 2014 23:07:26 -0800 Mike Pavone Use a lightweight substring object in a few places in the parser to improve performance for large files.
Sun, 05 Jan 2014 20:56:25 -0800 Mike Pavone Make the successful return value from a match expression be truthy and the failure value false. This avoids an extra method call when checking the result and avoids allocating a new object when a match fails.
Sun, 05 Jan 2014 19:28:09 -0800 Mike Pavone Don't expose internal helper functions in parser module
Sun, 05 Jan 2014 17:00:33 -0800 Mike Pavone Optimized implementation of character classes
Fri, 03 Jan 2014 22:13:34 -0800 Michael Pavone Support reading files larger than 1024 bytes in parser module
Fri, 03 Jan 2014 19:25:40 -0800 Michael Pavone Fix printing of function/method calls in parser module
Fri, 03 Jan 2014 19:23:47 -0800 Michael Pavone Add string method to unarymeth AST node object
Thu, 02 Jan 2014 23:42:33 -0800 Michael Pavone Fix string method of funcall nodes
Thu, 02 Jan 2014 22:49:51 -0800 Michael Pavone Fix string parsing in grammar and add it to the primlitsym rule. Add parentheses expressions. Allow parsing from a file.
Thu, 02 Jan 2014 21:04:10 -0800 Michael Pavone Implement lambdas in grammar. Make assignments an expression in grammar.
Sun, 29 Dec 2013 17:16:52 -0800 Michael Pavone Implemented arrays in grammar
Sun, 29 Dec 2013 17:09:21 -0800 Michael Pavone Implement list literals in grammar
Sun, 29 Dec 2013 14:56:46 -0800 Michael Pavone Implement all the binary operators except and/or/xor in grammar
Sun, 29 Dec 2013 14:39:54 -0800 Michael Pavone Added a new binaryOps:withHigherPrec macro to simplify specification of binary operator precedence level rules in the grammar
Sun, 29 Dec 2013 14:25:38 -0800 Michael Pavone Added addition and multiplication precedence level operators to grammar
Sun, 29 Dec 2013 13:08:01 -0800 Michael Pavone Implemented more of the grammar. Dealt with some name conflicts along the way.
Mon, 23 Dec 2013 14:44:31 -0800 Michael Pavone Implement onePlus macro. Fix some bugs in the other matching macros. Implement integer literal parsing rules.
Sat, 21 Dec 2013 12:08:06 -0800 Michael Pavone Implemented match:where:yield and fixed a bug in zeroPlus
Mon, 02 Dec 2013 00:50:16 -0800 Mike Pavone Implement match:yield macro
Sat, 30 Nov 2013 15:05:24 -0800 Mike Pavone Implement matchOne matching macro. Support more AST node types in zeroPlus matching macro.
Wed, 27 Nov 2013 23:36:24 -0800 Michael Pavone Implement zeroPlus macro
Fri, 22 Nov 2013 19:37:25 -0800 Mike Pavone Initial work on pattern match macrosfor the new parser