summaryrefslogtreecommitdiff
path: root/tests/yacc_nested.py
blob: 93ff4009c052245ac0a72d8cfda17578ac42a239 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30

from ply import lex, yacc

t_A = 'A'
t_B = 'B'
t_C = 'C'

tokens = ('A', 'B', 'C')

the_lexer = lex.lex()

def t_error(t):
    pass

def p_error(p):
    pass

def p_start(t):
    '''start : A nest C'''
    pass

def p_nest(t):
   '''nest : B'''
   print(t[-1])

the_parser = yacc.yacc(debug = False)

the_parser.parse('ABC', the_lexer)
the_parser.parse('ABC', the_lexer, tracking=True)
the_parser.parse('ABC', the_lexer, tracking=True, debug=1)