Class: Prism::LexCompat::Heredoc::PlainHeredoc
- Inherits:
-
Object
- Object
- Prism::LexCompat::Heredoc::PlainHeredoc
- Defined in:
- lib/prism/lex_compat.rb
Overview
Heredocs that are no dash or tilde heredocs are just a list of tokens. We need to keep them around so that we can insert them in the correct order back into the token stream and set the state of the last token to the state that the heredoc was opened in.
Instance Attribute Summary collapse
-
#tokens ⇒ Object
readonly
:nodoc:.
Instance Method Summary collapse
- #<<(token) ⇒ Object
-
#initialize ⇒ PlainHeredoc
constructor
A new instance of PlainHeredoc.
- #to_a ⇒ Object
Constructor Details
#initialize ⇒ PlainHeredoc
Returns a new instance of PlainHeredoc.
300 301 302 |
# File 'lib/prism/lex_compat.rb', line 300 def initialize @tokens = [] end |
Instance Attribute Details
#tokens ⇒ Object (readonly)
:nodoc:
298 299 300 |
# File 'lib/prism/lex_compat.rb', line 298 def tokens @tokens end |
Instance Method Details
#<<(token) ⇒ Object
304 305 306 |
# File 'lib/prism/lex_compat.rb', line 304 def <<(token) tokens << token end |
#to_a ⇒ Object
308 309 310 |
# File 'lib/prism/lex_compat.rb', line 308 def to_a tokens end |