Lines Matching refs:yylloc
3010 if (typeof this.lexer.yylloc == "undefined") this.lexer.yylloc = {};
3011 var yyloc = this.lexer.yylloc;
3071 lstack.push(this.lexer.yylloc);
3078 yyloc = this.lexer.yylloc;
3130 this.yylloc = { first_line: 1, first_column: 0, last_line: 1, last_column: 0 }; property
3131 if (this.options.ranges) this.yylloc.range = [0, 0];
3145 this.yylloc.last_line++;
3147 this.yylloc.last_column++;
3149 if (this.options.ranges) this.yylloc.range[1]++;
3167 var r = this.yylloc.range;
3169 this.yylloc = { first_line: this.yylloc.first_line, property
3171 first_column: this.yylloc.first_column,
3172 …oldLines.length ? this.yylloc.first_column : 0) + oldLines[oldLines.length - lines.length].length …
3176 this.yylloc.range = [r[0], r[0] + this.yyleng - len]; property
3226 this.yylloc = { first_line: this.yylloc.last_line, property
3228 first_column: this.yylloc.last_column,
3229 …h - 1].length - lines[lines.length - 1].match(/\r?\n?/)[0].length : this.yylloc.last_column + matc…
3235 this.yylloc.range = [this.offset, this.offset += this.yyleng]; property