(indented, column, type, align, prev, info)
| 147 | var atomicTypes = {"atom": true, "number": true, "variable": true, "string": true, "regexp": true}; |
| 148 | |
| 149 | function HaxeLexical(indented, column, type, align, prev, info) { |
| 150 | this.indented = indented; |
| 151 | this.column = column; |
| 152 | this.type = type; |
| 153 | this.prev = prev; |
| 154 | this.info = info; |
| 155 | if (align != null) this.align = align; |
| 156 | } |
| 157 | |
| 158 | function inScope(state, varname) { |
| 159 | for (var v = state.localVars; v; v = v.next) |
nothing calls this directly
no outgoing calls
no test coverage detected