rubyx/lib/ast/expression_list.rb

8 lines
199 B
Ruby
Raw Normal View History

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