rubyx/lib/ast/module_expression.rb

24 lines
850 B
Ruby
Raw Normal View History

2014-05-29 14:57:33 +02:00
module Ast
class ModuleExpression < Expression
# attr_reader :name ,:expressions
def compile context
clazz = context.object_space.get_or_create_class name
puts "Created class #{clazz.name.inspect}"
context.current_class = clazz
expressions.each do |expression|
# check if it's a function definition and add
# if not, execute it, but that does means we should be in crystal (executable), not ruby. ie throw an error for now
raise "only functions for now #{expression.inspect}" unless expression.is_a? Ast::FunctionExpression
puts "compiling expression #{expression}"
expression_value = expression.compile(context )
#puts "compiled expression #{expression_value.inspect}"
2014-05-29 14:57:33 +02:00
end
2014-06-02 12:45:08 +02:00
return clazz
2014-05-29 14:57:33 +02:00
end
end
2014-05-30 09:59:49 +02:00
class ClassExpression < ModuleExpression
end
2014-05-29 14:57:33 +02:00
end