Track spark_parser changes

This commit is contained in:
rocky
2017-11-18 09:49:14 -05:00
parent e116d7280c
commit 0c0a534a48
2 changed files with 3 additions and 2 deletions

View File

@@ -14,7 +14,8 @@ def test_grammar():
"Remaining tokens %s\n====\n%s" % (remain_tokens, p.dump_grammar())
p = get_python_parser(PYTHON_VERSION, is_pypy=IS_PYPY)
lhs, rhs, tokens, right_recursive = p.check_sets()
(lhs, rhs, tokens,
right_recursive, dup_rhs) = p.check_sets()
expect_lhs = set(['expr1024', 'pos_arg'])
unused_rhs = set(['build_list', 'call_function', 'mkfunc',
'mklambda',