diff options
author | Kevin Newton <[email protected]> | 2024-05-03 08:53:24 -0400 |
---|---|---|
committer | git <[email protected]> | 2024-05-03 13:12:27 +0000 |
commit | 1d51e929b1b10fe9fa109f8a8ebc3b938827271c (patch) | |
tree | 80172ab030813c208689e798be026afd9dc4060b /lib/prism/translation/ruby_parser.rb | |
parent | 32b1dea5665a6d1cf82e39af7bffb48172399205 (diff) |
[ruby/prism] Assume eval context for ruby_parser and ripper
https://github.com/ruby/prism/commit/e4d6984892
Diffstat (limited to 'lib/prism/translation/ruby_parser.rb')
-rw-r--r-- | lib/prism/translation/ruby_parser.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/prism/translation/ruby_parser.rb b/lib/prism/translation/ruby_parser.rb index a8692db5ea..f0a3bdd607 100644 --- a/lib/prism/translation/ruby_parser.rb +++ b/lib/prism/translation/ruby_parser.rb @@ -1536,13 +1536,13 @@ module Prism # Parse the given source and translate it into the seattlerb/ruby_parser # gem's Sexp format. def parse(source, filepath = "(string)") - translate(Prism.parse(source, filepath: filepath), filepath) + translate(Prism.parse(source, filepath: filepath, scopes: [[]]), filepath) end # Parse the given file and translate it into the seattlerb/ruby_parser # gem's Sexp format. def parse_file(filepath) - translate(Prism.parse_file(filepath), filepath) + translate(Prism.parse_file(filepath, scopes: [[]]), filepath) end class << self |