rubyx/lib/ast/expression_list.rb

8 lines
199 B
Ruby
Raw Normal View History

2014-06-26 16:52:15 +02:00
module Ast
class ExpressionList < Expression
# attr_reader :expressions
2014-07-10 16:14:38 +02:00
def compile binding , method
expressions.collect { |part| part.compile( binding , method ) }
2014-06-26 16:52:15 +02:00
end
end
end