Class: FAM::Syntax::AST::LoadNode
Instance Attribute Summary collapse
-
#register ⇒ Object
Returns the value of attribute register.
-
#value ⇒ Object
Returns the value of attribute value.
Instance Method Summary collapse
-
#initialize(value, register) ⇒ LoadNode
constructor
A new instance of LoadNode.
Methods inherited from Node
Constructor Details
#initialize(value, register) ⇒ LoadNode
Returns a new instance of LoadNode.
55 56 57 58 |
# File 'lib/fam/syntax/ast.rb', line 55 def initialize value, register @value = value @register = register end |