(indented, column, type, align, prev, info)
| 151 | var atomicTypes = {"atom": true, "number": true, "variable": true, "string": true, "regexp": true}; |
| 152 | |
| 153 | function JSLexical(indented, column, type, align, prev, info) { |
| 154 | this.indented = indented; |
| 155 | this.column = column; |
| 156 | this.type = type; |
| 157 | this.prev = prev; |
| 158 | this.info = info; |
| 159 | if (align != null) this.align = align; |
| 160 | } |
| 161 | |
| 162 | function inScope(state, varname) { |
| 163 | for (var v = state.localVars; v; v = v.next) |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…