Revert all of commits after Prism 0.19.0 release

We should bundle released version of Prism for Ruby 3.3.0
This commit is contained in:
Hiroshi SHIBATA 2023-12-16 11:05:46 +08:00
parent 122341305f
commit d242e8416e
No known key found for this signature in database
GPG key ID: F9CF13417264FAC2
41 changed files with 98 additions and 141 deletions

View file

@ -42,9 +42,7 @@ module Prism
assert_kind_of Prism::CallNode, Prism.parse("foo").value.statements.body[0]
assert_kind_of Prism::LocalVariableReadNode, Prism.parse("foo", scopes: [[:foo]]).value.statements.body[0]
assert_equal 1, Prism.parse("foo", scopes: [[:foo], []]).value.statements.body[0].depth
assert_equal [:foo], Prism.parse("foo", scopes: [[:foo]]).value.locals
assert_equal 2, Prism.parse("foo", scopes: [[:foo], []]).value.statements.body[0].depth
end
def test_literal_value_method