Location constructor

Location(
  1. int left_loc,
  2. int length,
  3. int start_line,
  4. int start_column,
  5. int end_line,
  6. int end_column,
)

Implementation

Location(this.left_loc,
    this.length,
    this.start_line,
    this.start_column,
    this.end_line,
    this.end_column);