MCPcopy Create free account
hub / github.com/Tampermonkey/tampermonkey / JSLexical

Function JSLexical

src/cm/javascript.js:153–160  ·  view source on GitHub ↗
(indented, column, type, align, prev, info)

Source from the content-addressed store, hash-verified

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)

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…