Fix ast types' _fields and use 0-based column

This commit is contained in:
dvermd 2022-10-17 19:09:15 +02:00 committed by Jeong YunWon
parent 41ddb7c369
commit ac77f7f501
56 changed files with 480 additions and 480 deletions

View file

@ -43,7 +43,7 @@ impl Location {
pub fn reset(&mut self) {
self.row = 1;
self.column = 1;
self.column = 0;
}
pub fn go_right(&mut self) {