Class: Dorian::Eval::Return
- Inherits:
-
Struct
- Object
- Struct
- Dorian::Eval::Return
- Defined in:
- lib/dorian/eval.rb
Instance Attribute Summary collapse
-
#returned ⇒ Object
Returns the value of attribute returned.
-
#stderr ⇒ Object
Returns the value of attribute stderr.
-
#stdout ⇒ Object
Returns the value of attribute stdout.
Instance Method Summary collapse
-
#initialize(stdout: "", stderr: "", returned: nil) ⇒ Return
constructor
A new instance of Return.
Constructor Details
#initialize(stdout: "", stderr: "", returned: nil) ⇒ Return
Returns a new instance of Return.
9 10 11 |
# File 'lib/dorian/eval.rb', line 9 def initialize(stdout: "", stderr: "", returned: nil) super end |
Instance Attribute Details
#returned ⇒ Object
Returns the value of attribute returned
7 8 9 |
# File 'lib/dorian/eval.rb', line 7 def returned @returned end |
#stderr ⇒ Object
Returns the value of attribute stderr
7 8 9 |
# File 'lib/dorian/eval.rb', line 7 def stderr @stderr end |
#stdout ⇒ Object
Returns the value of attribute stdout
7 8 9 |
# File 'lib/dorian/eval.rb', line 7 def stdout @stdout end |