Class: Rubycc::Front::AST::DoWhile

Inherits:
Data
  • Object
show all
Defined in:
lib/rubycc/front/ast.rb

Overview

do body while (condition);

Instance Attribute Summary collapse

Instance Attribute Details

#bodyObject (readonly)

Returns the value of attribute body

Returns:

  • (Object)

    the current value of body



264
265
266
# File 'lib/rubycc/front/ast.rb', line 264

def body
  @body
end

#conditionObject (readonly)

Returns the value of attribute condition

Returns:

  • (Object)

    the current value of condition



264
265
266
# File 'lib/rubycc/front/ast.rb', line 264

def condition
  @condition
end

#tokenObject (readonly)

Returns the value of attribute token

Returns:

  • (Object)

    the current value of token



264
265
266
# File 'lib/rubycc/front/ast.rb', line 264

def token
  @token
end