Module: Fig::Statement::EnvironmentVariable
Overview
A statement that manipulates an environment variable.
Defined Under Namespace
Modules: ClassMethods
Instance Attribute Summary collapse
-
#name ⇒ Object
readonly
Returns the value of attribute name.
-
#tokenized_value ⇒ Object
readonly
Returns the value of attribute tokenized_value.
Class Method Summary collapse
Instance Method Summary collapse
Instance Attribute Details
#name ⇒ Object (readonly)
Returns the value of attribute name.
12 13 14 |
# File 'lib/fig/statement/environment_variable.rb', line 12 def name @name end |
#tokenized_value ⇒ Object (readonly)
Returns the value of attribute tokenized_value.
12 13 14 |
# File 'lib/fig/statement/environment_variable.rb', line 12 def tokenized_value @tokenized_value end |
Class Method Details
.included(class_included_into) ⇒ Object
14 15 16 17 18 |
# File 'lib/fig/statement/environment_variable.rb', line 14 def self.included(class_included_into) class_included_into.extend(ClassMethods) return end |
Instance Method Details
#minimum_grammar_for_emitting_input ⇒ Object
20 21 22 |
# File 'lib/fig/statement/environment_variable.rb', line 20 def minimum_grammar_for_emitting_input() return minimum_grammar() end |
#minimum_grammar_for_publishing ⇒ Object
24 25 26 |
# File 'lib/fig/statement/environment_variable.rb', line 24 def minimum_grammar_for_publishing() return minimum_grammar() end |