File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -104,15 +104,14 @@ function parser() {
104
104
105
105
var parse_struct
106
106
, parse_precision
107
+ , parse_quantifier
107
108
, parse_forloop
108
109
, parse_if
110
+ , parse_return
109
111
, parse_whileloop
112
+ , parse_dowhileloop
110
113
, parse_function
111
114
, parse_function_args
112
- , parse_dowhileloop
113
- , parse_quantifier
114
-
115
- setup_stative_parsers ( )
116
115
117
116
var stream = through ( write , end )
118
117
, check = arguments . length ? [ ] . slice . call ( arguments ) : [ ]
@@ -125,7 +124,6 @@ function parser() {
125
124
, token
126
125
, node
127
126
128
-
129
127
// setup state
130
128
state . shift = special_shift
131
129
state . unshift = special_unshift
@@ -138,6 +136,8 @@ function parser() {
138
136
return n
139
137
}
140
138
139
+ setup_stative_parsers ( )
140
+
141
141
// setup root node
142
142
node = stmtlist ( )
143
143
node . expecting = '(eof)'
You can’t perform that action at this time.
0 commit comments