Lines Matching refs:current
75 var cur = this.current();
94 cur = this.current();
101 cur = this.current();
122 if (this.current() === '/' && this.previous() !== '\\') {
126 regexBody += this.current();
136 var isCurrentAFlag = POSSIBLE_FLAGS.indexOf(this.current()) !== -1;
138 regexFlags += this.current();
152 var curComplex = cur + this.current();
159 if (lib.indexOf(complexOps, curComplex + this.current()) !== -1) {
160 cur = curComplex + this.current();
204 if (this.current() === '.') {
284 tok += this.current();
298 while (!this.isFinished() && this.current() !== delimiter) {
299 var cur = this.current();
302 switch (this.current()) {
313 str += this.current();
356 var first = charString.indexOf(this.current());
360 var t = this.current();
365 var idx = charString.indexOf(this.current());
367 t += this.current();
369 idx = charString.indexOf(this.current());
409 if (this.current() === '\n') {
424 _proto.current = function current() { function