Class: Rubycc::Front::AST::DoWhile
- Inherits:
-
Data
- Object
- Data
- Rubycc::Front::AST::DoWhile
- Defined in:
- lib/rubycc/front/ast.rb
Overview
do body while (condition);
Instance Attribute Summary collapse
-
#body ⇒ Object
readonly
Returns the value of attribute body.
-
#condition ⇒ Object
readonly
Returns the value of attribute condition.
-
#token ⇒ Object
readonly
Returns the value of attribute token.
Instance Attribute Details
#body ⇒ Object (readonly)
Returns the value of attribute body
264 265 266 |
# File 'lib/rubycc/front/ast.rb', line 264 def body @body end |
#condition ⇒ Object (readonly)
Returns the value of attribute condition
264 265 266 |
# File 'lib/rubycc/front/ast.rb', line 264 def condition @condition end |
#token ⇒ Object (readonly)
Returns the value of attribute token
264 265 266 |
# File 'lib/rubycc/front/ast.rb', line 264 def token @token end |