CharacterLocation constructor

CharacterLocation(
  1. int line,
  2. int column
)

Initialize a newly created location to represent the location of the character at the given line and column.

Implementation

CharacterLocation(this.line, this.column);