Class: TestML::Assignment
- Inherits:
-
Object
- Object
- TestML::Assignment
- Defined in:
- lib/testml/runtime.rb
Overview
Instance Attribute Summary collapse
-
#expr ⇒ Object
Returns the value of attribute expr.
-
#name ⇒ Object
Returns the value of attribute name.
Instance Method Summary collapse
-
#initialize(name, expr) ⇒ Assignment
constructor
A new instance of Assignment.
Constructor Details
#initialize(name, expr) ⇒ Assignment
Returns a new instance of Assignment.
297 298 299 300 |
# File 'lib/testml/runtime.rb', line 297 def initialize(name, expr) @name = name @expr = expr end |