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 952d70b9d1
commit fa41a1e2f6
56 changed files with 480 additions and 480 deletions

View File

@@ -19,12 +19,12 @@ expression: parse_ast
value: Located {
location: Location {
row: 1,
column: 2,
column: 1,
},
end_location: Some(
Location {
row: 1,
column: 3,
column: 2,
},
),
custom: (),
@@ -53,12 +53,12 @@ expression: parse_ast
value: Located {
location: Location {
row: 1,
column: 3,
column: 2,
},
end_location: Some(
Location {
row: 1,
column: 4,
column: 3,
},
),
custom: (),