-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathNone.py
52 lines (39 loc) · 1.36 KB
/
None.py
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
# -*- coding: utf8 -*-
'''
© 2009 Denis Derman (former developer) <[email protected]>
© 2011 Peter Potrowl (current developer) <[email protected]>
This file is part of PIJNU.
PIJNU is free software: you can redistribute it and/or modify it
under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
PIJNU is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with PIJNU: see the file called 'GPL'.
If not, see <http://www.gnu.org/licenses/>.
'''
""" genTest
<definition>
X : 'x'
XX : X XXX : join
XXX : XX / X : @
"""
from pijnu.library import *
genTestParser = Parser()
state = genTestParser.state
### title: genTest ###
### <toolset>
pass
### <definition>
# recursive pattern(s)
XXX = Recursive(name='XXX')
X = Char('x', expression="'x'", name='X')
XX = Sequence([X, XXX], expression='X XXX', name='XX')(join)
XXX **= Choice([XX, X], expression='XX / X', name='XXX')
genTestParser._recordPatterns(vars())
genTestParser._setTopPattern("XXX")
genTestParser.grammarTitle = "genTest"
genTestParser.filename = "None.py"