Lines Matching refs:column
382 // Determine start, end and column.
389 var column = position - start;
395 column += this.column_offset;
399 return new SourceLocation(this, position, line, column, start, end);
404 * Get information on a specific source line and column possibly offset by a
406 * a line and column position. The fixed source position offset is typically
407 * used to find a source position in a function based on a line and column in
411 * @param {number} opt_column The column in within the line. Default value is 0
413 * source from where the line and column calculation starts.
426 // Default is first column. If on the first line add the offset within the
428 var column = opt_column || 0;
430 column -= this.column_offset;
434 if (line < 0 || column < 0 || offset_position < 0) return null;
436 return this.locationFromPosition(offset_position + column, false);
446 this.line_ends[offset_line + line - 1] + 1 + column); // line > 0 here.
592 * column : source column within the line
603 * @param {number} column The column within the line for the location
608 function SourceLocation(script, position, line, column, start, end) {
612 this.column = column;
683 $Array("script", "position", "line", "column", "start", "end"),
902 return location ? location.column + 1: null;
967 eval_origin += ":" + (location.column + 1);