This commit is contained in:
Johannes Altmanninger 2019-10-23 03:11:13 +02:00
parent 8c9f3c7bd4
commit 785b7d9438

View File

@ -17,8 +17,8 @@ using namespace grammar;
// Herein are encoded the productions for our LL2 fish grammar. // Herein are encoded the productions for our LL2 fish grammar.
// //
// Each symbol (e.g. symbol_job_list) has a corresponding function (e.g. resolve_job_lits). The // Each symbol (e.g. symbol_job_list) has a corresponding function (e.g. resolve_job_list). The
// function accepts two tokens, representing the first and second lookahead, and returns returns a // function accepts two tokens, representing the first and second lookahead, and returns a
// production representing the rule, or NULL on error. There is also a tag value which is returned // production representing the rule, or NULL on error. There is also a tag value which is returned
// by reference; the tag is a sort of node annotation. // by reference; the tag is a sort of node annotation.
// //