Fixed mismatched indentation

This commit is contained in:
Hiroshi SHIBATA 2025-04-04 14:23:25 +09:00
parent 705a95323e
commit 0251abca7f
No known key found for this signature in database
GPG Key ID: F9CF13417264FAC2

View File

@ -1622,7 +1622,7 @@ dummy
node = ast_parse("def foo; yield(1, 2) end") node = ast_parse("def foo; yield(1, 2) end")
assert_locations(node.children[-1].children[-1].children[-1].locations, [[1, 9, 1, 20], [1, 9, 1, 14], [1, 14, 1, 15], [1, 19, 1, 20]]) assert_locations(node.children[-1].children[-1].children[-1].locations, [[1, 9, 1, 20], [1, 9, 1, 14], [1, 14, 1, 15], [1, 19, 1, 20]])
end end
private private
def ast_parse(src, **options) def ast_parse(src, **options)