Class: Fig::Statement::SyntheticRawText
- Inherits:
-
Fig::Statement
- Object
- Fig::Statement
- Fig::Statement::SyntheticRawText
- Defined in:
- lib/fig/statement/synthetic_raw_text.rb
Overview
Some raw text that we want emitted as part of unparsing.
Constant Summary
Constants inherited from Fig::Statement
ENVIRONMENT_VARIABLE_NAME_REGEX
Instance Attribute Summary collapse
-
#text ⇒ Object
readonly
Returns the value of attribute text.
Attributes inherited from Fig::Statement
#column, #line, #source_description
Instance Method Summary collapse
- #deparse_as_version(deparser) ⇒ Object
-
#initialize(line_column, source_description, text) ⇒ SyntheticRawText
constructor
A new instance of SyntheticRawText.
- #minimum_grammar_for_emitting_input ⇒ Object
- #minimum_grammar_for_publishing ⇒ Object
- #statement_type ⇒ Object
Methods inherited from Fig::Statement
#is_asset?, #is_environment_variable?, position_description, #position_string, #urls, #walk_statements
Constructor Details
#initialize(line_column, source_description, text) ⇒ SyntheticRawText
Returns a new instance of SyntheticRawText.
11 12 13 14 15 |
# File 'lib/fig/statement/synthetic_raw_text.rb', line 11 def initialize(line_column, source_description, text) super(line_column, source_description) @text = text end |
Instance Attribute Details
#text ⇒ Object (readonly)
Returns the value of attribute text.
9 10 11 |
# File 'lib/fig/statement/synthetic_raw_text.rb', line 9 def text @text end |
Instance Method Details
#deparse_as_version(deparser) ⇒ Object
21 22 23 |
# File 'lib/fig/statement/synthetic_raw_text.rb', line 21 def deparse_as_version(deparser) return deparser.synthetic_raw_text(self) end |
#minimum_grammar_for_emitting_input ⇒ Object
25 26 27 |
# File 'lib/fig/statement/synthetic_raw_text.rb', line 25 def minimum_grammar_for_emitting_input() return [0] end |
#minimum_grammar_for_publishing ⇒ Object
29 30 31 |
# File 'lib/fig/statement/synthetic_raw_text.rb', line 29 def minimum_grammar_for_publishing() return [0] end |
#statement_type ⇒ Object
17 18 19 |
# File 'lib/fig/statement/synthetic_raw_text.rb', line 17 def statement_type() return nil end |