1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-06-01 06:28:13 +00:00

Shell: Correctly mark the end line of a parsed list

This commit is contained in:
Tim Schumacher 2023-03-23 14:02:27 +01:00 committed by Ali Mohammad Pur
parent 46c22ee49d
commit 9a6b5a53a7

View file

@ -690,7 +690,7 @@ ErrorOr<RefPtr<AST::Node>> Parser::parse_list()
start_position.start_offset,
end_position.end_offset,
start_position.start_line,
start_position.end_line,
end_position.end_line,
},
move(nodes),
move(positions));