diff options
Diffstat (limited to 'lib/prism/parse_result')
-rw-r--r-- | lib/prism/parse_result/comments.rb | 2 | ||||
-rw-r--r-- | lib/prism/parse_result/newlines.rb | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/lib/prism/parse_result/comments.rb b/lib/prism/parse_result/comments.rb index 88240609b1..fba0b1a5aa 100644 --- a/lib/prism/parse_result/comments.rb +++ b/lib/prism/parse_result/comments.rb @@ -1,6 +1,6 @@ # frozen_string_literal: true -module YARP +module Prism class ParseResult # When we've parsed the source, we have both the syntax tree and the list of # comments that we found in the source. This class is responsible for diff --git a/lib/prism/parse_result/newlines.rb b/lib/prism/parse_result/newlines.rb index d16600afd0..334f3f2a69 100644 --- a/lib/prism/parse_result/newlines.rb +++ b/lib/prism/parse_result/newlines.rb @@ -1,6 +1,6 @@ # frozen_string_literal: true -module YARP +module Prism class ParseResult # The :line tracepoint event gets fired whenever the Ruby VM encounters an # expression on a new line. The types of expressions that can trigger this |