Commit 71f7b82 1 parent 76abac2 commit 71f7b82 Copy full SHA for 71f7b82
File tree 1 file changed +4
-4
lines changed
1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change 86
86
#
87
87
@@prologue
88
88
89
- class @@prefixNode:
89
+ class @@prefixNode(object) :
90
90
"""
91
91
This is an AST node.
92
92
@@ -135,7 +135,7 @@ class @@prefixParseException(Exception):
135
135
self.expecting = expecting
136
136
137
137
138
- class _@@prefixToken:
138
+ class _@@prefixToken(object) :
139
139
"""
140
140
Only used internally;
141
141
Represents a token on the stack.
@@ -147,7 +147,7 @@ class _@@prefixToken:
147
147
@@value-type-definition
148
148
149
149
150
- class _@@prefixControlBlock:
150
+ class _@@prefixControlBlock(object) :
151
151
"""
152
152
Only used internally;
153
153
Represents the current parser state, and allows to
@@ -191,7 +191,7 @@ class _@@prefixControlBlock:
191
191
self.column = 1
192
192
@@pcb
193
193
194
- class @@prefixParser:
194
+ class @@prefixParser(object) :
195
195
"""
196
196
Implements a LALR-Parser for @@name.
197
197
Call @@prefixParser.parse() to start parsing a given string.
You can’t perform that action at this time.
0 commit comments