rubyx/lib/ast/expression.rb

42 lines
1.1 KiB
Ruby
Raw Normal View History

2014-05-05 09:02:02 +02:00
# abstract syntax tree (ast)
# This Layer is semi automagically created by parslet using the transform
# It in turn is responsible for the transformation to the next layer, vm code
# This happens in the compile function which must return a Vm::Code derivative
# PS: compare is only for tests and should be factored out to there
2014-05-05 08:51:16 +02:00
module Ast
2014-04-24 16:38:06 +02:00
class Expression
def eval
2014-05-05 09:02:02 +02:00
raise "abstract #{self}"
end
def compile context , into
2014-05-05 09:02:02 +02:00
raise "abstract #{self}"
2014-04-24 16:38:06 +02:00
end
def attributes
raise "abstract #{self}"
end
def == other
2014-04-29 15:22:12 +02:00
return false unless other.class == self.class
attributes.each do |a|
left = send(a)
right = other.send( a)
return false unless left.class == right.class
return false unless left == right
end
return true
end
2014-04-24 16:38:06 +02:00
end
2014-04-24 14:43:20 +02:00
end
2014-05-05 09:02:02 +02:00
require_relative "basic_expressions"
require_relative "compound_expressions"
2014-05-24 09:18:54 +02:00
require_relative "if_expression"
2014-05-10 18:02:51 +02:00
require_relative "while_expression"
2014-05-05 09:02:02 +02:00
require_relative "function_expression"
2014-05-10 18:02:51 +02:00
require_relative "operator_expressions"
require_relative "call_site_expression"