Home
last modified time | relevance | path

Searched refs:finishOp (Results 1 – 7 of 7) sorted by relevance

/plugin/asciidocjs/node_modules/acorn/src/
Dtokenize.js214 if (next === 61) return this.finishOp(tt.assign, 2)
215 return this.finishOp(tt.slash, 1)
230 if (next === 61) return this.finishOp(tt.assign, size + 1)
231 return this.finishOp(tokentype, size)
236 if (next === code) return this.finishOp(code === 124 ? tt.logicalOR : tt.logicalAND, 2)
237 if (next === 61) return this.finishOp(tt.assign, 2)
238 return this.finishOp(code === 124 ? tt.bitwiseOR : tt.bitwiseAND, 1)
243 if (next === 61) return this.finishOp(tt.assign, 2)
244 return this.finishOp(tt.bitwiseXOR, 1)
257 return this.finishOp(tt.incDec, 2)
[all …]
/plugin/asciidocjs/node_modules/with/node_modules/acorn/src/
Dtokenize.js227 if (next === 61) return this.finishOp(tt.assign, 2)
228 return this.finishOp(tt.slash, 1)
243 if (next === 61) return this.finishOp(tt.assign, size + 1)
244 return this.finishOp(tokentype, size)
249 if (next === code) return this.finishOp(code === 124 ? tt.logicalOR : tt.logicalAND, 2)
250 if (next === 61) return this.finishOp(tt.assign, 2)
251 return this.finishOp(code === 124 ? tt.bitwiseOR : tt.bitwiseAND, 1)
256 if (next === 61) return this.finishOp(tt.assign, 2)
257 return this.finishOp(tt.bitwiseXOR, 1)
270 return this.finishOp(tt.incDec, 2)
[all …]
/plugin/asciidocjs/node_modules/with/node_modules/acorn/dist/
Dacorn.es.js2601 if (next === 61) return this.finishOp(tt.assign, 2)
2602 return this.finishOp(tt.slash, 1)
2617 if (next === 61) return this.finishOp(tt.assign, size + 1)
2618 return this.finishOp(tokentype, size)
2623 if (next === code) return this.finishOp(code === 124 ? tt.logicalOR : tt.logicalAND, 2)
2624 if (next === 61) return this.finishOp(tt.assign, 2)
2625 return this.finishOp(code === 124 ? tt.bitwiseOR : tt.bitwiseAND, 1)
2630 if (next === 61) return this.finishOp(tt.assign, 2)
2631 return this.finishOp(tt.bitwiseXOR, 1)
2644 return this.finishOp(tt.incDec, 2)
[all …]
Dacorn.js2607 if (next === 61) return this.finishOp(tt.assign, 2)
2608 return this.finishOp(tt.slash, 1)
2623 if (next === 61) return this.finishOp(tt.assign, size + 1)
2624 return this.finishOp(tokentype, size)
2629 if (next === code) return this.finishOp(code === 124 ? tt.logicalOR : tt.logicalAND, 2)
2630 if (next === 61) return this.finishOp(tt.assign, 2)
2631 return this.finishOp(code === 124 ? tt.bitwiseOR : tt.bitwiseAND, 1)
2636 if (next === 61) return this.finishOp(tt.assign, 2)
2637 return this.finishOp(tt.bitwiseXOR, 1)
2650 return this.finishOp(tt.incDec, 2)
[all …]
/plugin/asciidocjs/node_modules/acorn/dist/
Dacorn.es.js2857 if (next === 61) return this.finishOp(tt.assign, 2)
2858 return this.finishOp(tt.slash, 1)
2873 if (next === 61) return this.finishOp(tt.assign, size + 1)
2874 return this.finishOp(tokentype, size)
2879 if (next === code) return this.finishOp(code === 124 ? tt.logicalOR : tt.logicalAND, 2)
2880 if (next === 61) return this.finishOp(tt.assign, 2)
2881 return this.finishOp(code === 124 ? tt.bitwiseOR : tt.bitwiseAND, 1)
2886 if (next === 61) return this.finishOp(tt.assign, 2)
2887 return this.finishOp(tt.bitwiseXOR, 1)
2900 return this.finishOp(tt.incDec, 2)
[all …]
Dacorn.js2863 if (next === 61) return this.finishOp(tt.assign, 2)
2864 return this.finishOp(tt.slash, 1)
2879 if (next === 61) return this.finishOp(tt.assign, size + 1)
2880 return this.finishOp(tokentype, size)
2885 if (next === code) return this.finishOp(code === 124 ? tt.logicalOR : tt.logicalAND, 2)
2886 if (next === 61) return this.finishOp(tt.assign, 2)
2887 return this.finishOp(code === 124 ? tt.bitwiseOR : tt.bitwiseAND, 1)
2892 if (next === 61) return this.finishOp(tt.assign, 2)
2893 return this.finishOp(tt.bitwiseXOR, 1)
2906 return this.finishOp(tt.incDec, 2)
[all …]
/plugin/asciidocjs/node_modules/babylon/lib/
Dindex.js935 return this.finishOp(types.assign, 2);
937 return this.finishOp(types.slash, 1);
959 return this.finishOp(type, width);
965 if (next === code) return this.finishOp(code === 124 ? types.logicalOR : types.logicalAND, 2);
966 if (next === 61) return this.finishOp(types.assign, 2);
967 …if (code === 124 && next === 125 && this.hasPlugin("flow")) return this.finishOp(types.braceBarR, …
968 return this.finishOp(code === 124 ? types.bitwiseOR : types.bitwiseAND, 1);
975 return this.finishOp(types.assign, 2);
977 return this.finishOp(types.bitwiseXOR, 1);
992 return this.finishOp(types.incDec, 2);
[all …]