diff python/yacc.py @ 340:c7cc54c0dfdf devel

Test featurebranch
author Windel Bouwman
date Sun, 23 Feb 2014 16:24:01 +0100
parents 6f4753202b9a
children 86b02c98a717
line wrap: on
line diff
--- a/python/yacc.py	Fri Feb 21 13:35:07 2014 +0100
+++ b/python/yacc.py	Sun Feb 23 16:24:01 2014 +0100
@@ -209,7 +209,7 @@
         self.grammar = grammar
         self.headers = headers
         self.logger.info('Generating parser for grammar {}'.format(grammar))
-        self.action_table, self.goto_table = grammar.doGenerate()
+        self.action_table, self.goto_table = grammar.generate_tables()
         self.generate_python_script()
 
     def print(self, *args):