| /plugin/asciidocjs/node_modules/acorn/src/loose/ |
| D | statement.js | 3 import {getLineInfo, tokTypes as tt} from "../index" 10 while (this.tok.type !== tt.eof) node.body.push(this.parseStatement()) 22 starttype = tt._var 27 case tt._break: case tt._continue: 29 let isBreak = starttype === tt._break 33 node.label = this.tok.type === tt.name ? this.parseIdent() : null 38 case tt._debugger: 43 case tt._do: 46 node.test = this.eat(tt._while) ? this.parseParenExpression() : this.dummyIdent() 50 case tt._for: [all …]
|
| D | expression.js | 3 import {tokTypes as tt} from "../index" 26 if (this.tok.type === tt.comma) { 29 while (this.eat(tt.comma)) node.expressions.push(this.parseMaybeAssign(noIn)) 37 this.expect(tt.parenL) 40 this.expect(tt.parenR) 48 …if (this.semicolon() || this.canInsertSemicolon() || (this.tok.type != tt.star && !this.tok.type.s… 52 node.delegate = this.eat(tt.star) 63 node.left = this.tok.type === tt.eq ? this.toAssignable(left) : this.checkLVal(left) 74 if (this.eat(tt.question)) { 78 node.alternate = this.expect(tt.colon) ? this.parseMaybeAssign(noIn) : this.dummyIdent() [all …]
|
| /plugin/asciidocjs/node_modules/with/node_modules/acorn/src/loose/ |
| D | statement.js | 3 import {getLineInfo, tokTypes as tt} from "acorn" 10 while (this.tok.type !== tt.eof) node.body.push(this.parseStatement()) 22 starttype = tt._var 27 case tt._break: case tt._continue: 29 let isBreak = starttype === tt._break 33 node.label = this.tok.type === tt.name ? this.parseIdent() : null 38 case tt._debugger: 43 case tt._do: 46 node.test = this.eat(tt._while) ? this.parseParenExpression() : this.dummyIdent() 50 case tt._for: [all …]
|
| D | expression.js | 3 import {tokTypes as tt} from "acorn" 26 if (this.tok.type === tt.comma) { 29 while (this.eat(tt.comma)) node.expressions.push(this.parseMaybeAssign(noIn)) 37 this.expect(tt.parenL) 40 this.expect(tt.parenR) 48 …if (this.semicolon() || this.canInsertSemicolon() || (this.tok.type != tt.star && !this.tok.type.s… 52 node.delegate = this.eat(tt.star) 63 node.left = this.tok.type === tt.eq ? this.toAssignable(left) : this.checkLVal(left) 74 if (this.eat(tt.question)) { 78 node.alternate = this.expect(tt.colon) ? this.parseMaybeAssign(noIn) : this.dummyIdent() [all …]
|
| /plugin/asciidocjs/node_modules/with/node_modules/acorn/src/ |
| D | statement.js | 1 import {types as tt} from "./tokentype" 19 while (this.type !== tt.eof) { 37 if (this.type !== tt.name || this.options.ecmaVersion < 6 || this.value != "let") return false 61 starttype = tt._var 70 …case tt._break: case tt._continue: return this.parseBreakContinueStatement(node, starttype.keyword) 71 case tt._debugger: return this.parseDebuggerStatement(node) 72 case tt._do: return this.parseDoStatement(node) 73 case tt._for: return this.parseForStatement(node) 74 case tt._function: 77 case tt._class: [all …]
|
| D | tokencontext.js | 6 import {types as tt} from "./tokentype" 35 if (prevType === tt.colon) { 40 if (prevType === tt._return) 42 …if (prevType === tt._else || prevType === tt.semi || prevType === tt.eof || prevType === tt.parenR) 44 if (prevType == tt.braceL) 51 if (type.keyword && prevType == tt.dot) 61 tt.parenR.updateContext = tt.braceR.updateContext = function() { 77 tt.braceL.updateContext = function(prevType) { 82 tt.dollarBraceL.updateContext = function() { 87 tt.parenL.updateContext = function(prevType) { [all …]
|
| D | expression.js | 19 import {types as tt} from "./tokentype" 81 if (this.type === tt.comma) { 84 …while (this.eat(tt.comma)) node.expressions.push(this.parseMaybeAssign(noIn, refDestructuringError… 102 if (this.type == tt.parenL || this.type == tt.name) 111 node.left = this.type === tt.eq ? this.toAssignable(left) : left 129 if (this.eat(tt.question)) { 133 this.expect(tt.colon) 157 if (prec != null && (!noIn || this.type !== tt._in)) { 159 let logical = this.type === tt.logicalOR || this.type === tt.logicalAND 184 let node = this.startNode(), update = this.type === tt.incDec [all …]
|
| D | tokenize.js | 2 import {types as tt, keywords as keywordTypes} from "./tokentype" 56 done: token.type === tt.eof, 67 if (this.type !== tt.num && this.type !== tt.string) return 91 if (this.pos >= this.input.length) return this.finishToken(tt.eof) 217 return this.finishToken(tt.ellipsis) 220 return this.finishToken(tt.dot) 227 if (next === 61) return this.finishOp(tt.assign, 2) 228 return this.finishOp(tt.slash, 1) 234 let tokentype = code === 42 ? tt.star : tt.modulo 239 tokentype = tt.starstar [all …]
|
| /plugin/asciidocjs/node_modules/acorn/src/ |
| D | tokencontext.js | 6 import {types as tt} from "./tokentype" 35 if (prevType === tt.colon) { 40 if (prevType === tt._return) 42 …if (prevType === tt._else || prevType === tt.semi || prevType === tt.eof || prevType === tt.parenR) 44 if (prevType == tt.braceL) 51 if (type.keyword && prevType == tt.dot) 61 tt.parenR.updateContext = tt.braceR.updateContext = function() { 77 tt.braceL.updateContext = function(prevType) { 82 tt.dollarBraceL.updateContext = function() { 87 tt.parenL.updateContext = function(prevType) { [all …]
|
| D | statement.js | 1 import {types as tt} from "./tokentype" 19 while (this.type !== tt.eof) { 33 if (this.type !== tt.name || this.options.ecmaVersion < 6 || this.value != "let") return false 50 if (this.type !== tt.name || this.options.ecmaVersion < 8 || this.value != "async") 72 starttype = tt._var 81 …case tt._break: case tt._continue: return this.parseBreakContinueStatement(node, starttype.keyword) 82 case tt._debugger: return this.parseDebuggerStatement(node) 83 case tt._do: return this.parseDoStatement(node) 84 case tt._for: return this.parseForStatement(node) 85 case tt._function: [all …]
|
| D | expression.js | 19 import {types as tt} from "./tokentype" 81 if (this.type === tt.comma) { 84 …while (this.eat(tt.comma)) node.expressions.push(this.parseMaybeAssign(noIn, refDestructuringError… 106 if (this.type == tt.parenL || this.type == tt.name) 115 node.left = this.type === tt.eq ? this.toAssignable(left) : left 134 if (this.eat(tt.question)) { 138 this.expect(tt.colon) 162 if (prec != null && (!noIn || this.type !== tt._in)) { 164 let logical = this.type === tt.logicalOR || this.type === tt.logicalAND 192 let node = this.startNode(), update = this.type === tt.incDec [all …]
|
| D | tokenize.js | 2 import {types as tt, keywords as keywordTypes} from "./tokentype" 56 done: token.type === tt.eof, 78 if (this.pos >= this.input.length) return this.finishToken(tt.eof) 204 return this.finishToken(tt.ellipsis) 207 return this.finishToken(tt.dot) 214 if (next === 61) return this.finishOp(tt.assign, 2) 215 return this.finishOp(tt.slash, 1) 221 let tokentype = code === 42 ? tt.star : tt.modulo 226 tokentype = tt.starstar 230 if (next === 61) return this.finishOp(tt.assign, size + 1) [all …]
|
| D | lval.js | 1 import {types as tt} from "./tokentype" 105 if (allowNonIdent) node.argument = this.type === tt.name ? this.parseIdent() : this.unexpected() 106 …else node.argument = this.type === tt.name || this.type === tt.bracketL ? this.parseBindingAtom() … 116 case tt.name: 119 case tt.bracketL: 122 node.elements = this.parseBindingList(tt.bracketR, true, true) 125 case tt.braceL: 137 else this.expect(tt.comma) 138 if (allowEmpty && this.type === tt.comma) { 142 } else if (this.type === tt.ellipsis) { [all …]
|
| /plugin/asciidocjs/node_modules/with/node_modules/acorn/dist/ |
| D | acorn.es.js | 139 var tt = { variable 454 this.type = tt.eof 540 return this.type === tt.name && this.value === name 546 return this.value === name && this.eat(tt.name) 558 return this.type === tt.eof || 559 this.type === tt.braceR || 575 if (!this.eat(tt.semi) && !this.insertSemicolon()) this.unexpected() 631 while (this.type !== tt.eof) { 649 if (this.type !== tt.name || this.options.ecmaVersion < 6 || this.value != "let") return false 673 starttype = tt._var [all …]
|
| D | acorn.js | 145 var tt = { variable 460 this.type = tt.eof 546 return this.type === tt.name && this.value === name 552 return this.value === name && this.eat(tt.name) 564 return this.type === tt.eof || 565 this.type === tt.braceR || 581 if (!this.eat(tt.semi) && !this.insertSemicolon()) this.unexpected() 637 while (this.type !== tt.eof) { 655 if (this.type !== tt.name || this.options.ecmaVersion < 6 || this.value != "let") return false 679 starttype = tt._var [all …]
|
| /plugin/asciidocjs/node_modules/acorn/dist/ |
| D | acorn.es.js | 138 var tt = { variable 464 this.type = tt.eof 559 return this.type === tt.name && this.value === name 565 return this.value === name && this.eat(tt.name) 577 return this.type === tt.eof || 578 this.type === tt.braceR || 594 if (!this.eat(tt.semi) && !this.insertSemicolon()) this.unexpected() 665 while (this.type !== tt.eof) { 679 if (this.type !== tt.name || this.options.ecmaVersion < 6 || this.value != "let") return false 696 if (this.type !== tt.name || this.options.ecmaVersion < 8 || this.value != "async") [all …]
|
| D | acorn.js | 144 var tt = { variable 470 this.type = tt.eof 565 return this.type === tt.name && this.value === name 571 return this.value === name && this.eat(tt.name) 583 return this.type === tt.eof || 584 this.type === tt.braceR || 600 if (!this.eat(tt.semi) && !this.insertSemicolon()) this.unexpected() 671 while (this.type !== tt.eof) { 685 if (this.type !== tt.name || this.options.ecmaVersion < 6 || this.value != "let") return false 702 if (this.type !== tt.name || this.options.ecmaVersion < 8 || this.value != "async") [all …]
|
| /plugin/hr/ |
| D | syntax.php | 190 * <tt>FALSE</tt> when a format isn't supported. <tt>$aRenderer</tt> 192 * handling the rendering. The contents of <tt>$aData</tt> is the 193 * return value of the <tt>handle()</tt> method. 197 * @param $aData Array The data created by the <tt>handle()</tt> 199 * @return Boolean <tt>TRUE</tt> if rendered successfully, or 200 * <tt>FALSE</tt> otherwise.
|
| /plugin/directions/syntax/ |
| D | globaldirections.php | 191 * <tt>FALSE</tt> when a format isn't supported. <tt>$aRenderer</tt> 193 * handling the rendering. The contents of <tt>$aData</tt> is the 194 * return value of the <tt>handle()</tt> method. 198 * @param $aData Array The data created by the <tt>handle()</tt> 200 * @return Boolean <tt>TRUE</tt> if rendered successfully, or 201 * <tt>FALSE</tt> otherwise.
|
| D | localdirections.php | 195 * <tt>FALSE</tt> when a format isn't supported. <tt>$aRenderer</tt> 197 * handling the rendering. The contents of <tt>$aData</tt> is the 198 * return value of the <tt>handle()</tt> method. 202 * @param $aData Array The data created by the <tt>handle()</tt> 204 * @return Boolean <tt>TRUE</tt> if rendered successfully, or 205 * <tt>FALSE</tt> otherwise.
|
| /plugin/shy/ |
| D | syntax.php | 149 * <tt>FALSE</tt> when a format isn't supported. <tt>$aRenderer</tt> 151 * handling the rendering. The contents of <tt>$aData</tt> is the 152 * return value of the <tt>handle()</tt> method. 156 * @param $aData Integer The state value returned by <tt>handle()</tt>. 157 * @return Boolean <tt>TRUE</tt> always.
|
| /plugin/zwidoku/ |
| H A D | getEncyc.php | 228 $tt['ZWIversion'] = "1.3"; 229 $tt['Primary'] = "article.dokuwiki"; 230 $tt['Title'] = $title; 231 $tt['Namespace'] = $NS; 232 $tt['LastModified'] = dformat($INFO['lastmod']); 233 $tt['TimeCreated'] = dformat($INFO['lastmod']); 234 $tt['Location'] = $fileLastMod; 235 $tt['Revisions'] = $xr; 236 $tt['Publisher']=$wgMzwiName; 237 $tt['Content'] = $content_array; [all …]
|
| /plugin/spreadout/ |
| D | syntax.php | 155 * <tt>$aRenderer</tt> contains a reference to the renderer object 157 * The contents of <tt>$aData</tt> is the return value of the 158 * <tt>handle()</tt> method. 160 * This implementation ignores the passed <tt>$aFormat</tt>
|
| /plugin/note/ |
| D | CHANGES.md | 22 …* fix the issue with protected modes (e.g. ```<tt><code></tt>``` & ```<tt><file></tt>```) not bein… 24 …ake note types case independent (e.g. ```<tt>important</tt>```, ```<tt>IMPORTANT</tt>``` & ```<tt>…
|
| /plugin/smartcache/ |
| D | script.js | 15 tt = new sack(DOKU_BASE + 'lib/plugins/DokuSmartcache/ajax.php'); 16 tt.encodeURIString = false; 17 tt.onCompletion=checkDate; 19 tt.runAJAX('call=smartcheck&id='+JSINFO['id']); 26 tt.onCompletion=checkDate2; 27 tt.runAJAX('call=smartcheck2&re='+this.response);
|