Class: Fig::Statement::SyntheticRawText

Inherits:
Fig::Statement show all
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

Attributes inherited from Fig::Statement

#column, #line, #source_description

Instance Method Summary collapse

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

#textObject (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_inputObject



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_publishingObject



29
30
31
# File 'lib/fig/statement/synthetic_raw_text.rb', line 29

def minimum_grammar_for_publishing()
  return [0]
end

#statement_typeObject



17
18
19
# File 'lib/fig/statement/synthetic_raw_text.rb', line 17

def statement_type()
  return nil
end