Home | History | Annotate | Download | only in src

Lines Matching refs:column

413   // Determine start, end and column.
420 var column = position - start;
426 column += this.column_offset;
430 return new SourceLocation(this, position, line, column, start, end);
435 * Get information on a specific source line and column possibly offset by a
437 * a line and column position. The fixed source position offset is typically
438 * used to find a source position in a function based on a line and column in
442 * @param {number} opt_column The column in within the line. Default value is 0
444 * source from where the line and column calculation starts.
457 // Default is first column. If on the first line add the offset within the
459 var column = opt_column || 0;
461 column -= this.column_offset;
465 if (line < 0 || column < 0 || offset_position < 0) return null;
467 return this.locationFromPosition(offset_position + column, false);
477 this.line_ends[offset_line + line - 1] + 1 + column); // line > 0 here.
624 * column : source column within the line
635 * @param {number} column The column within the line for the location
640 function SourceLocation(script, position, line, column, start, end) {
644 this.column = column;
715 $Array("script", "position", "line", "column", "start", "end"),
908 return location ? location.column + 1: null;
1044 eval_origin += ":" + (location.column + 1);