CharacterLocation constructor Null safety
Initialize a newly created location to represent the location of the
character at the given lineNumber
and columnNumber
.
Implementation
CharacterLocation(int lineNumber, int columnNumber)
: super(lineNumber, columnNumber);