Home
last modified time | relevance | path

Searched refs:finishToken (Results 1 – 11 of 11) sorted by relevance

/plugin/asciidocjs/node_modules/acorn/src/
Dtokenize.js78 if (this.pos >= this.input.length) return this.finishToken(tt.eof)
179 pp.finishToken = function(type, val) { function in pp
204 return this.finishToken(tt.ellipsis)
207 return this.finishToken(tt.dot)
288 return this.finishToken(tt.arrow)
301 case 40: ++this.pos; return this.finishToken(tt.parenL)
302 case 41: ++this.pos; return this.finishToken(tt.parenR)
303 case 59: ++this.pos; return this.finishToken(tt.semi)
304 case 44: ++this.pos; return this.finishToken(tt.comma)
305 case 91: ++this.pos; return this.finishToken(tt.bracketL)
[all …]
/plugin/asciidocjs/node_modules/with/node_modules/acorn/src/
Dtokenize.js91 if (this.pos >= this.input.length) return this.finishToken(tt.eof)
192 pp.finishToken = function(type, val) { function in pp
217 return this.finishToken(tt.ellipsis)
220 return this.finishToken(tt.dot)
301 return this.finishToken(tt.arrow)
314 case 40: ++this.pos; return this.finishToken(tt.parenL)
315 case 41: ++this.pos; return this.finishToken(tt.parenR)
316 case 59: ++this.pos; return this.finishToken(tt.semi)
317 case 44: ++this.pos; return this.finishToken(tt.comma)
318 case 91: ++this.pos; return this.finishToken(tt.bracketL)
[all …]
/plugin/asciidocjs/node_modules/with/node_modules/acorn/dist/
Dacorn.es.js2459 if (this.pos >= this.input.length) return this.finishToken(tt.eof)
2566 pp$7.finishToken = function(type, val) { function
2591 return this.finishToken(tt.ellipsis)
2594 return this.finishToken(tt.dot)
2675 return this.finishToken(tt.arrow)
2688 case 40: ++this.pos; return this.finishToken(tt.parenL)
2689 case 41: ++this.pos; return this.finishToken(tt.parenR)
2690 case 59: ++this.pos; return this.finishToken(tt.semi)
2691 case 44: ++this.pos; return this.finishToken(tt.comma)
2692 case 91: ++this.pos; return this.finishToken(tt.bracketL)
[all …]
Dacorn.js2465 if (this.pos >= this.input.length) return this.finishToken(tt.eof)
2572 pp$7.finishToken = function(type, val) {
2597 return this.finishToken(tt.ellipsis)
2600 return this.finishToken(tt.dot)
2681 return this.finishToken(tt.arrow)
2694 case 40: ++this.pos; return this.finishToken(tt.parenL)
2695 case 41: ++this.pos; return this.finishToken(tt.parenR)
2696 case 59: ++this.pos; return this.finishToken(tt.semi)
2697 case 44: ++this.pos; return this.finishToken(tt.comma)
2698 case 91: ++this.pos; return this.finishToken(tt.bracketL)
[all …]
/plugin/asciidocjs/node_modules/acorn/dist/
Dacorn.es.js2715 if (this.pos >= this.input.length) return this.finishToken(tt.eof)
2822 pp$7.finishToken = function(type, val) { function
2847 return this.finishToken(tt.ellipsis)
2850 return this.finishToken(tt.dot)
2931 return this.finishToken(tt.arrow)
2944 case 40: ++this.pos; return this.finishToken(tt.parenL)
2945 case 41: ++this.pos; return this.finishToken(tt.parenR)
2946 case 59: ++this.pos; return this.finishToken(tt.semi)
2947 case 44: ++this.pos; return this.finishToken(tt.comma)
2948 case 91: ++this.pos; return this.finishToken(tt.bracketL)
[all …]
Dacorn.js2721 if (this.pos >= this.input.length) return this.finishToken(tt.eof)
2828 pp$7.finishToken = function(type, val) {
2853 return this.finishToken(tt.ellipsis)
2856 return this.finishToken(tt.dot)
2937 return this.finishToken(tt.arrow)
2950 case 40: ++this.pos; return this.finishToken(tt.parenL)
2951 case 41: ++this.pos; return this.finishToken(tt.parenR)
2952 case 59: ++this.pos; return this.finishToken(tt.semi)
2953 case 44: ++this.pos; return this.finishToken(tt.comma)
2954 case 91: ++this.pos; return this.finishToken(tt.bracketL)
[all …]
/plugin/asciidocjs/node_modules/babylon/lib/
Dindex.js761 if (this.state.pos >= this.input.length) return this.finishToken(types.eof);
888 Tokenizer.prototype.finishToken = function finishToken(type, val) { method in Tokenizer
919 return this.finishToken(types.ellipsis);
922 return this.finishToken(types.dot);
1036 return this.finishToken(types.arrow);
1051 ++this.state.pos;return this.finishToken(types.parenL);
1053 ++this.state.pos;return this.finishToken(types.parenR);
1055 ++this.state.pos;return this.finishToken(types.semi);
1057 ++this.state.pos;return this.finishToken(types.comma);
1059 ++this.state.pos;return this.finishToken(types.bracketL);
[all …]
/plugin/dirtylittlehelper/mermaid/editor/docs/
D4.4.js1finishToken=function(e,t,n){return{offset:e,len:this.stream.pos()-e,type:t,text:n||this.stream.sub… method in e
D2.2.js28344 Scanner.prototype.finishToken = function (offset, type, text) {
28365 return this.finishToken(offset, TokenType.UnquotedString, content.join(''));
28378 return this.finishToken(offset, TokenType.EOF);
28385 return this.finishToken(offset, TokenType.CDO);
28389 return this.finishToken(offset, TokenType.CDC);
28393 return this.finishToken(offset, TokenType.Ident, content.join(''));
28401 return this.finishToken(offset, TokenType.Charset, keywordText);
28403 return this.finishToken(offset, TokenType.AtKeyword, keywordText);
28406 return this.finishToken(offset, TokenType.Delim);
28413 return this.finishToken(offset, TokenType.Hash, content.join(''));
[all …]
D3.3.js.map1finishToken(offset, type, errorMessage) {\n tokenType = type;\n tokenOffset = offset…
D2.2.js.map1finishToken = function (offset, type, text) {\n return {\n offset: offset,\n …