| /plugin/asciidocjs/node_modules/async/internal/ |
| D | wrapAsync.js | 6 exports.isAsyncIterable = exports.isAsyncGenerator = exports.isAsync = undefined; 14 function isAsync(fn) { function 28 return isAsync(asyncFn) ? (0, _asyncify2.default)(asyncFn) : asyncFn; 32 exports.isAsync = isAsync;
|
| /plugin/supa/lib/ |
| D | Supa.js | 27 isAsync, 64 isAsync = false; 66 xrequest.open("POST", actionUrl, isAsync);
|
| /plugin/asciidocjs/node_modules/acorn/src/ |
| D | statement.js | 212 pp.parseFunctionStatement = function(node, isAsync) { argument 214 return this.parseFunction(node, true, false, isAsync) 447 pp.parseFunction = function(node, isStatement, allowExpressionBody, isAsync) { argument 449 if (this.options.ecmaVersion >= 6 && !isAsync) 452 node.async = !!isAsync 502 let isAsync = false 514 isAsync = true 521 …if (!isGenerator && !isAsync && key.type === "Identifier" && this.type !== tt.parenL && (key.name … 531 if (isAsync) this.raise(key.start, "Constructor can't be an async method") 536 this.parseClassMethod(classBody, method, isGenerator, isAsync) [all …]
|
| D | expression.js | 525 let prop = this.startNode(), isGenerator, isAsync, startPos, startLoc 540 isAsync = true 543 isAsync = false 545 …this.parsePropertyValue(prop, isPattern, isGenerator, isAsync, startPos, startLoc, refDestructurin… 552 pp.parsePropertyValue = function(prop, isPattern, isGenerator, isAsync, startPos, startLoc, refDest… argument 553 if ((isGenerator || isAsync) && this.type === tt.colon) 563 prop.value = this.parseMethod(isGenerator, isAsync) 567 if (isGenerator || isAsync || isPattern) this.unexpected() 630 pp.parseMethod = function(isGenerator, isAsync) { argument 638 node.async = !!isAsync [all …]
|
| /plugin/asciidocjs/node_modules/acorn/src/loose/ |
| D | statement.js | 267 let method = this.startNode(), isGenerator, isAsync 286 isAsync = true 288 isAsync = false 297 if (!method.computed && !method.static && !isGenerator && !isAsync && ( 304 method.value = this.parseMethod(isGenerator, isAsync) 320 lp.parseFunction = function(node, isStatement, isAsync) { argument 327 node.async = !!isAsync 348 let isAsync 349 if (this.tok.type === tt._function || (isAsync = this.toks.isAsyncFunction())) { 352 if (isAsync) this.next() [all …]
|
| D | expression.js | 221 let isAsync = false 227 isAsync = true 230 … return this.eat(tt.arrow) ? this.parseArrowExpression(this.startNodeAt(start), [id], isAsync) : id 361 let prop = this.startNode(), isGenerator, isAsync, start 373 isAsync = true 375 isAsync = false 384 prop.value = this.parseMethod(isGenerator, isAsync) 501 lp.parseMethod = function(isGenerator, isAsync) { argument 507 node.async = !!isAsync 516 lp.parseArrowExpression = function(node, params, isAsync) { argument [all …]
|
| /plugin/asciidocjs/node_modules/jake/lib/ |
| D | test_task.js | 146 let isAsync = !!action.length; 151 async: isAsync
|
| /plugin/asciidocjs/node_modules/acorn/dist/ |
| D | acorn.es.js | 860 pp$1.parseFunctionStatement = function(node, isAsync) { argument 862 return this.parseFunction(node, true, false, isAsync) 1103 pp$1.parseFunction = function(node, isStatement, allowExpressionBody, isAsync) { argument 1105 if (this.options.ecmaVersion >= 6 && !isAsync) 1108 node.async = !!isAsync 1160 var isAsync = false 1172 isAsync = true 1179 …if (!isGenerator && !isAsync && key.type === "Identifier" && this$1.type !== tt.parenL && (key.nam… 1189 if (isAsync) this$1.raise(key.start, "Constructor can't be an async method") 1194 this$1.parseClassMethod(classBody, method, isGenerator, isAsync) [all …]
|
| D | acorn.js | 866 pp$1.parseFunctionStatement = function(node, isAsync) { argument 868 return this.parseFunction(node, true, false, isAsync) 1109 pp$1.parseFunction = function(node, isStatement, allowExpressionBody, isAsync) { argument 1111 if (this.options.ecmaVersion >= 6 && !isAsync) 1114 node.async = !!isAsync 1166 var isAsync = false 1178 isAsync = true 1185 …if (!isGenerator && !isAsync && key.type === "Identifier" && this$1.type !== tt.parenL && (key.nam… 1195 if (isAsync) this$1.raise(key.start, "Constructor can't be an async method") 1200 this$1.parseClassMethod(classBody, method, isGenerator, isAsync) [all …]
|
| /plugin/asciidocjs/node_modules/async/ |
| D | ensureAsync.js | 52 if ((0, _wrapAsync.isAsync)(fn)) return fn;
|
| D | retryable.js | 59 if ((0, _wrapAsync.isAsync)(task)) {
|
| D | asyncify.js | 77 if ((0, _wrapAsync.isAsync)(func)) {
|
| D | wrapSync.js | 77 if ((0, _wrapAsync.isAsync)(func)) {
|
| D | autoInject.js | 150 var fnIsAsync = (0, _wrapAsync.isAsync)(taskFn);
|
| /plugin/asciidocjs/node_modules/babylon/lib/ |
| D | index.js | 2362 pp$1.parseFunction = function (node, isStatement, allowExpressionBody, isAsync, optionalId) { argument 2366 this.initFunction(node, isAsync); 2582 pp$1.parseClassMethod = function (classBody, method, isGenerator, isAsync) { argument 2583 this.parseMethod(method, isGenerator, isAsync); 3988 isAsync = false, 4040 isAsync = true; 4048 …this.parseObjPropValue(prop, startPos, startLoc, isGenerator, isAsync, isPattern, refShorthandDefa… 4092 pp$3.parseObjectMethod = function (prop, isGenerator, isAsync, isPattern) { argument 4093 if (isAsync || isGenerator || this.match(types.parenL)) { 4097 this.parseMethod(prop, isGenerator, isAsync); [all …]
|
| /plugin/asciidocjs/node_modules/async/dist/ |
| D | async.js | 148 if (isAsync(func)) { 188 function isAsync(fn) { function 202 return isAsync(asyncFn) ? asyncify(asyncFn) : asyncFn; 1331 var fnIsAsync = isAsync(taskFn); 2786 if (isAsync(fn)) return fn; 4724 if (isAsync(task)) {
|
| D | async.mjs | 142 if (isAsync(func)) { 182 function isAsync(fn) { function 196 return isAsync(asyncFn) ? asyncify(asyncFn) : asyncFn; 1325 var fnIsAsync = isAsync(taskFn); 2780 if (isAsync(fn)) return fn; 4718 if (isAsync(task)) {
|
| /plugin/indexmenu/scripts/fancytree/modules/ |
| D | jquery.fancytree.js | 4295 isAsync = true, 4359 isAsync = false; 4377 if (isAsync) { 4629 if (isAsync) {
|
| /plugin/indexmenu/scripts/fancytree/ |
| D | jquery.fancytree-all.js | 4295 isAsync = true, 4359 isAsync = false; 4377 if (isAsync) { 4629 if (isAsync) {
|
| D | jquery.fancytree-all-deps.js | 5756 isAsync = true, 5820 isAsync = false; 5838 if (isAsync) { 6090 if (isAsync) {
|
| D | jquery.fancytree-all-deps.min.js.map | 1 …lected","nodeSetActive","nodeLoadChildren","ajax","resultDfd","ajaxDfd","isAsync","nodePrevParent"…
|
| /plugin/diagramsnet/lib/js/diagramly/ |
| D | EditorUi.js | 14139 getDiagramTextContent: {isAsync: false}, 14140 getLocalStorageFile: {isAsync: false, allowedDomains: ['app.diagrams.net']}, 14141 getLocalStorageFileNames: {isAsync: false, allowedDomains: ['app.diagrams.net']}, 14142 setMigratedFlag: {isAsync: false, allowedDomains: ['app.diagrams.net']} 14281 if (functionInfo.isAsync)
|