summaryrefslogtreecommitdiffstats
path: root/taccle/ChangeLog
diff options
context:
space:
mode:
authorWilliam Joye <wjoye@cfa.harvard.edu>2018-06-21 19:52:32 (GMT)
committerWilliam Joye <wjoye@cfa.harvard.edu>2018-06-21 19:52:32 (GMT)
commit6919da64f1e15c1b0a350bb318772d05d2efe9d3 (patch)
tree897fdaa3d7fd78f72fcb2b6d83889973fd4a6d2b /taccle/ChangeLog
parent67f7b317d8c54c06c71a8f645129b6646de5ab5f (diff)
parent95627403093a9d1683fe4882836a0ca3adfd0a8a (diff)
downloadblt-6919da64f1e15c1b0a350bb318772d05d2efe9d3.zip
blt-6919da64f1e15c1b0a350bb318772d05d2efe9d3.tar.gz
blt-6919da64f1e15c1b0a350bb318772d05d2efe9d3.tar.bz2
Merge commit '95627403093a9d1683fe4882836a0ca3adfd0a8a' as 'taccle'
Diffstat (limited to 'taccle/ChangeLog')
-rw-r--r--taccle/ChangeLog48
1 files changed, 48 insertions, 0 deletions
diff --git a/taccle/ChangeLog b/taccle/ChangeLog
new file mode 100644
index 0000000..e9728f1
--- /dev/null
+++ b/taccle/ChangeLog
@@ -0,0 +1,48 @@
+2005-03-17 J. Tang <tang@jtang.org>
+
+ * Added infinite recursion detection. It should work.
+
+2004-10-29 J. Tang <tang@jtang.org>
+
+ * Added more comments; upped version to 1.0.
+
+2004-09-29 J. Tang <tang@jtang.org>
+
+ * Added --version flag to display taccle version.
+
+ * Added infix_calc.tac as example of how to do precedence.
+
+ * Added operator precedence (%left, %right, %nonassoc, and
+ %prec). Seems to work, at least with the example from the bison
+ info manual.
+
+2004-09-28 J. Tang <tang@jtang.org>
+
+ * Discovered obscure error when calculating FIRST and FOLLOW sets
+ given a rule of the form: x -> A x A
+ (i.e., when the rule recurses with a terminal following the lhs
+ token)
+
+ * Added -w to enable warnings display.
+
+2004-09-27 J. Tang <tang@jtang.org>
+
+ * Added write_array procedure to better format state transition
+ tables. Thanks to jcw for suggestion.
+
+2004-09-08 J. Tang <tang@jtang.org>
+
+ * As a result of working epsilons, added embedded actions.
+
+ * Fixed epsilon transitions by adding FOLLOW sets. Double Woot!
+
+2004-08-18 J. Tang <tang@jtang.org>
+
+ * Added epsilon transitions. Woot!
+
+ * Renamed synthesized attributes to just $1, $2... Renamed $yy_
+ to $_. (Yup, $_ like in Perl.) Thanks to Matt Newman for
+ suggestion.
+
+ * Added error terminal and error recovery (though no yyerrok).
+ See interactive_calculator.tac example.