Class: Gemite::AST::IfStmt
- Inherits:
-
Struct
- Object
- Struct
- Gemite::AST::IfStmt
- Defined in:
- lib/gemite/ast.rb
Overview
branches: [[cond_ast, [stmt,...]], ...]
Instance Attribute Summary collapse
-
#branches ⇒ Object
Returns the value of attribute branches.
-
#else_body ⇒ Object
Returns the value of attribute else_body.
Instance Attribute Details
#branches ⇒ Object
Returns the value of attribute branches
30 31 32 |
# File 'lib/gemite/ast.rb', line 30 def branches @branches end |
#else_body ⇒ Object
Returns the value of attribute else_body
30 31 32 |
# File 'lib/gemite/ast.rb', line 30 def else_body @else_body end |