CharacterLocation constructor

CharacterLocation(
  1. int lineNumber,
  2. int columnNumber
)

Initialize a newly created location to represent the location of the character at the given lineNumber and columnNumber.

Implementation

CharacterLocation(this.lineNumber, this.columnNumber);