Rename Vool Block to Lambda

Making the distinction clearer
Some fixing of previous (wip)
This commit is contained in:
2019-08-19 10:40:22 +03:00
parent 02807cf6f9
commit ae16551ed0
8 changed files with 12 additions and 12 deletions

View File

@ -1,5 +1,5 @@
module Vool
class BlockStatement < Statement
class LambdaStatement < Statement
attr_reader :args , :body , :clazz
def initialize( args , body , clazz = nil)
@ -14,7 +14,7 @@ module Vool
# This means we do the compiler here (rather than to_mom, which is in
# fact never called)
def slot_definition(compiler)
return Mom::SlotDefinition.new(Mom::BlockConstant.new(parfait_block(compiler)) , [])
return Mom::SlotDefinition.new(Mom::LambdaConstant.new(parfait_block(compiler)) , [])
end
# create a block, a compiler for it, comile the bock and add the compiler(code)
@ -32,6 +32,9 @@ module Vool
@body.each(&block)
end
def to_s(depth=0)
"Block #{args} #{body}"
end
# create the parfait block (parfait representation of the block, a Callable similar
# to CallableMethod)
def parfait_block(compiler)

View File

@ -5,16 +5,13 @@ module Vool
def initialize( name , args , body )
@name , @args , @body = name , args , body
raise "no bod" unless @body
raise "Not Vool #{@body}" unless @body.is_a?(Statement)
end
def to_mom(clazz)
raise( "no class in #{self}") unless clazz
method = make_method(clazz)
compiler = method.compiler_for(clazz.instance_type)
each do |node| ## TODO: must account for nested blocks (someday)
next unless node.is_a?(BlockStatement)
compiler.block_compilers << node.to_mom(compiler)
end
compiler
end