Class: IV::Phonic::AST::ExpressionStatement

Inherits:
Statement show all
Defined in:
lib/iv/phonic/ast.rb

Instance Method Summary collapse

Methods inherited from Statement

as

Methods inherited from Node

#begin_position, #end_position, #program, #source

Constructor Details

#initialize(parent, stmt) ⇒ ExpressionStatement

Returns a new instance of ExpressionStatement.



296
297
298
299
# File 'lib/iv/phonic/ast.rb', line 296

def initialize parent, stmt
  super parent, stmt
  @body = Expression.as self, stmt[:body]
end