move to syms for names
This commit is contained in:
parent
b7c2089046
commit
ca19f5cb16
@ -63,6 +63,7 @@ module Arm
|
|||||||
# return the block of the given name
|
# return the block of the given name
|
||||||
# or raise an exception, as this is meant to be called when the block is available
|
# or raise an exception, as this is meant to be called when the block is available
|
||||||
def get_block name
|
def get_block name
|
||||||
|
name = name.to_sym
|
||||||
block = @blocks.find {|b| b.name == name}
|
block = @blocks.find {|b| b.name == name}
|
||||||
raise "No block found for #{name} (in #{blocks.collect{|b|b.name}.join(':')})" unless block
|
raise "No block found for #{name} (in #{blocks.collect{|b|b.name}.join(':')})" unless block
|
||||||
block
|
block
|
||||||
|
@ -24,7 +24,7 @@ module Ast
|
|||||||
class NameExpression < Expression
|
class NameExpression < Expression
|
||||||
attr_reader :name
|
attr_reader :name
|
||||||
def initialize name
|
def initialize name
|
||||||
@name = name
|
@name = name.to_sym
|
||||||
end
|
end
|
||||||
# compiling a variable resolves it.
|
# compiling a variable resolves it.
|
||||||
# if it wasn't defined, nli is returned
|
# if it wasn't defined, nli is returned
|
||||||
@ -32,7 +32,7 @@ module Ast
|
|||||||
context.locals[name]
|
context.locals[name]
|
||||||
end
|
end
|
||||||
def inspect
|
def inspect
|
||||||
self.class.name + '.new("' + name + '")'
|
"#{self.class.name}.new(#{name})"
|
||||||
end
|
end
|
||||||
def to_s
|
def to_s
|
||||||
name
|
name
|
||||||
|
@ -5,7 +5,9 @@ module Ast
|
|||||||
attr_reader :name, :args , :receiver
|
attr_reader :name, :args , :receiver
|
||||||
|
|
||||||
def initialize name, args , receiver = Ast::NameExpression.new(:self)
|
def initialize name, args , receiver = Ast::NameExpression.new(:self)
|
||||||
@name , @args , @receiver = name.to_sym , args , receiver
|
@name = name.to_sym
|
||||||
|
@args = args
|
||||||
|
@receiver = receiver
|
||||||
end
|
end
|
||||||
|
|
||||||
def compile context , into
|
def compile context , into
|
||||||
@ -14,6 +16,7 @@ module Ast
|
|||||||
r = context.current_class.name
|
r = context.current_class.name
|
||||||
if !receiver.nil? and receiver.name != :self
|
if !receiver.nil? and receiver.name != :self
|
||||||
r = receiver.name
|
r = receiver.name
|
||||||
|
raise "uups #{receiver.class}.#{receiver.name.class}" unless r.is_a? Symbol
|
||||||
end
|
end
|
||||||
clazz = context.object_space.get_or_create_class r
|
clazz = context.object_space.get_or_create_class r
|
||||||
|
|
||||||
|
@ -1,6 +1,8 @@
|
|||||||
module Ast
|
module Ast
|
||||||
class ModuleExpression < Expression
|
class ModuleExpression < Expression
|
||||||
|
|
||||||
attr_reader :name ,:expressions
|
attr_reader :name ,:expressions
|
||||||
|
|
||||||
def initialize name , expressions
|
def initialize name , expressions
|
||||||
@name = name.to_sym
|
@name = name.to_sym
|
||||||
@expressions = expressions
|
@expressions = expressions
|
||||||
|
@ -1,15 +1,19 @@
|
|||||||
|
require_relative "meta_class"
|
||||||
|
|
||||||
module Vm
|
module Vm
|
||||||
# class is mainly a list of functions with a name (for now)
|
# class is mainly a list of functions with a name (for now)
|
||||||
# layout of object is seperated into Layout
|
# layout of object is seperated into Layout
|
||||||
class BootClass < Code
|
class BootClass < Code
|
||||||
def initialize name , context , superclass = :Object
|
def initialize name , context , super_class = :Object
|
||||||
|
super()
|
||||||
@context = context
|
@context = context
|
||||||
# class functions
|
# class functions
|
||||||
@functions = []
|
@functions = []
|
||||||
@name = name.to_sym
|
@name = name.to_sym
|
||||||
@superclass = superclass
|
@super_class = super_class
|
||||||
|
@meta_class = MetaClass.new(self)
|
||||||
end
|
end
|
||||||
attr_reader :name , :functions
|
attr_reader :name , :functions , :meta_class
|
||||||
|
|
||||||
def add_function function
|
def add_function function
|
||||||
raise "not a function #{function}" unless function.is_a? Function
|
raise "not a function #{function}" unless function.is_a? Function
|
||||||
@ -22,11 +26,11 @@ module Vm
|
|||||||
@functions.detect{ |f| f.name == name }
|
@functions.detect{ |f| f.name == name }
|
||||||
end
|
end
|
||||||
|
|
||||||
# preferred way of creating new functions (also forward declarations, will flag unresolved later)
|
# way of creating new functions that have not been parsed.
|
||||||
def get_or_create_function name
|
def get_or_create_function name
|
||||||
fun = get_function name
|
fun = get_function name
|
||||||
unless fun or name == :Object
|
unless fun or name == :Object
|
||||||
supr = @context.object_space.get_or_create_class(@superclass)
|
supr = @context.object_space.get_or_create_class(@super_class)
|
||||||
fun = supr.get_function name
|
fun = supr.get_function name
|
||||||
puts "#{supr.functions.collect(&:name)} for #{name} GOT #{fun.class}" if name == :index_of
|
puts "#{supr.functions.collect(&:name)} for #{name} GOT #{fun.class}" if name == :index_of
|
||||||
end
|
end
|
||||||
|
33
lib/vm/meta_class.rb
Normal file
33
lib/vm/meta_class.rb
Normal file
@ -0,0 +1,33 @@
|
|||||||
|
module Vm
|
||||||
|
# class that acts like a class, but is really the object
|
||||||
|
|
||||||
|
# described in the ruby language book as the eigenclass, what you get with
|
||||||
|
# class MyClass
|
||||||
|
# class << self <--- this is called the eigenclass, or metaclass, and really is just the class object
|
||||||
|
# .... but gives us the ability to use the syntax as if it were a class
|
||||||
|
# PS: can't say i fancy the << self syntax and am considerernig adding a keyword for it, like meta
|
||||||
|
# In effect it is a very similar construct to def self.function(...)
|
||||||
|
# So one could write def meta.function(...) and thus define on the meta-class
|
||||||
|
class MetaClass < Code
|
||||||
|
# no name, nor nothing. as this is just the object really
|
||||||
|
|
||||||
|
def initialize(object)
|
||||||
|
super()
|
||||||
|
@functions = []
|
||||||
|
@me_self = object
|
||||||
|
end
|
||||||
|
|
||||||
|
# in a non-booting version this should map to _add_singleton_method
|
||||||
|
def add_function function
|
||||||
|
raise "not a function #{function}" unless function.is_a? Function
|
||||||
|
raise "syserr " unless function.name.is_a? Symbol
|
||||||
|
@functions << function
|
||||||
|
end
|
||||||
|
|
||||||
|
def get_function name
|
||||||
|
name = name.to_sym
|
||||||
|
@functions.detect{ |f| f.name == name }
|
||||||
|
end
|
||||||
|
|
||||||
|
end
|
||||||
|
end
|
@ -35,7 +35,7 @@ class TestBasic < MiniTest::Test
|
|||||||
def test_instance_variable
|
def test_instance_variable
|
||||||
@string_input = '@foo_bar '
|
@string_input = '@foo_bar '
|
||||||
@parse_output = {:instance_variable=>{:name=>"foo_bar"}}
|
@parse_output = {:instance_variable=>{:name=>"foo_bar"}}
|
||||||
@transform_output = Ast::VariableExpression.new('foo_bar')
|
@transform_output = Ast::VariableExpression.new(:foo_bar)
|
||||||
@parser = @parser.instance_variable
|
@parser = @parser.instance_variable
|
||||||
end
|
end
|
||||||
|
|
||||||
|
@ -22,7 +22,7 @@ class TestCallSite < MiniTest::Test
|
|||||||
def test_single_instance
|
def test_single_instance
|
||||||
@string_input = '@var.foo(42)'
|
@string_input = '@var.foo(42)'
|
||||||
@parse_output = {:receiver=>{:instance_variable=>{:name=>"var"}}, :call_site=>{:name=>"foo"}, :argument_list=>[{:argument=>{:integer=>"42"}}]}
|
@parse_output = {:receiver=>{:instance_variable=>{:name=>"var"}}, :call_site=>{:name=>"foo"}, :argument_list=>[{:argument=>{:integer=>"42"}}]}
|
||||||
@transform_output = Ast::CallSiteExpression.new(:foo, [Ast::IntegerExpression.new(42)] ,Ast::VariableExpression.new("var"))
|
@transform_output = Ast::CallSiteExpression.new(:foo, [Ast::IntegerExpression.new(42)] ,Ast::VariableExpression.new(:var))
|
||||||
@parser = @parser.call_site
|
@parser = @parser.call_site
|
||||||
end
|
end
|
||||||
|
|
||||||
@ -96,7 +96,7 @@ class TestCallSite < MiniTest::Test
|
|||||||
def test_call_chaining_instance
|
def test_call_chaining_instance
|
||||||
@string_input = '@class.new(self.get(4))'
|
@string_input = '@class.new(self.get(4))'
|
||||||
@parse_output = {:receiver=>{:instance_variable=>{:name=>"class"}}, :call_site=>{:name=>"new"}, :argument_list=>[{:argument=>{:receiver=>{:name=>"self"}, :call_site=>{:name=>"get"}, :argument_list=>[{:argument=>{:integer=>"4"}}]}}]}
|
@parse_output = {:receiver=>{:instance_variable=>{:name=>"class"}}, :call_site=>{:name=>"new"}, :argument_list=>[{:argument=>{:receiver=>{:name=>"self"}, :call_site=>{:name=>"get"}, :argument_list=>[{:argument=>{:integer=>"4"}}]}}]}
|
||||||
@transform_output = Ast::CallSiteExpression.new(:new, [Ast::CallSiteExpression.new(:get, [Ast::IntegerExpression.new(4)] ,Ast::NameExpression.new("self"))] ,Ast::VariableExpression.new("class"))
|
@transform_output = Ast::CallSiteExpression.new(:new, [Ast::CallSiteExpression.new(:get, [Ast::IntegerExpression.new(4)] ,Ast::NameExpression.new("self"))] ,Ast::VariableExpression.new(:class))
|
||||||
@parser = @parser.call_site
|
@parser = @parser.call_site
|
||||||
end
|
end
|
||||||
|
|
||||||
|
@ -25,7 +25,7 @@ class Opers
|
|||||||
end
|
end
|
||||||
HERE
|
HERE
|
||||||
@parse_output = {:module_name=>"Opers", :class_expressions=>[{:function_name=>{:name=>"foo"}, :parmeter_list=>[{:parmeter=>{:name=>"x"}}], :expressions=>[{:l=>{:instance_variable=>{:name=>"abba"}}, :o=>"= ", :r=>{:integer=>"5"}}, {:l=>{:integer=>"2"}, :o=>"+ ", :r=>{:integer=>"5"}}], :end=>"end"}], :end=>"end"}
|
@parse_output = {:module_name=>"Opers", :class_expressions=>[{:function_name=>{:name=>"foo"}, :parmeter_list=>[{:parmeter=>{:name=>"x"}}], :expressions=>[{:l=>{:instance_variable=>{:name=>"abba"}}, :o=>"= ", :r=>{:integer=>"5"}}, {:l=>{:integer=>"2"}, :o=>"+ ", :r=>{:integer=>"5"}}], :end=>"end"}], :end=>"end"}
|
||||||
@transform_output = Ast::ClassExpression.new(:Opers ,[Ast::FunctionExpression.new(:foo, [Ast::NameExpression.new("x")] , [Ast::OperatorExpression.new("=", Ast::VariableExpression.new("abba"),Ast::IntegerExpression.new(5)),Ast::OperatorExpression.new("+", Ast::IntegerExpression.new(2),Ast::IntegerExpression.new(5))] )] )
|
@transform_output = Ast::ClassExpression.new(:Opers ,[Ast::FunctionExpression.new(:foo, [Ast::NameExpression.new("x")] , [Ast::OperatorExpression.new("=", Ast::VariableExpression.new(:abba),Ast::IntegerExpression.new(5)),Ast::OperatorExpression.new("+", Ast::IntegerExpression.new(2),Ast::IntegerExpression.new(5))] )] )
|
||||||
@parser = @parser.class_definition
|
@parser = @parser.class_definition
|
||||||
end
|
end
|
||||||
|
|
||||||
@ -56,7 +56,7 @@ class Pifi
|
|||||||
end
|
end
|
||||||
HERE
|
HERE
|
||||||
@parse_output = {:module_name=>"Pifi", :class_expressions=>[{:call_site=>{:name=>"ofthen"}, :argument_list=>[{:argument=>{:l=>{:integer=>"3"}, :o=>"+", :r=>{:integer=>"4"}}}, {:argument=>{:name=>"var"}}]}, {:function_name=>{:name=>"ofthen"}, :parmeter_list=>[{:parmeter=>{:name=>"n"}}, {:parmeter=>{:name=>"m"}}], :expressions=>[{:integer=>"44"}], :end=>"end"}], :end=>"end"}
|
@parse_output = {:module_name=>"Pifi", :class_expressions=>[{:call_site=>{:name=>"ofthen"}, :argument_list=>[{:argument=>{:l=>{:integer=>"3"}, :o=>"+", :r=>{:integer=>"4"}}}, {:argument=>{:name=>"var"}}]}, {:function_name=>{:name=>"ofthen"}, :parmeter_list=>[{:parmeter=>{:name=>"n"}}, {:parmeter=>{:name=>"m"}}], :expressions=>[{:integer=>"44"}], :end=>"end"}], :end=>"end"}
|
||||||
@transform_output =Ast::ClassExpression.new(:Pifi ,[Ast::CallSiteExpression.new(:ofthen, [Ast::OperatorExpression.new("+", Ast::IntegerExpression.new(3),Ast::IntegerExpression.new(4)),Ast::NameExpression.new("var")] ), Ast::FunctionExpression.new(:ofthen, [Ast::NameExpression.new("n"),Ast::NameExpression.new("m")] , [Ast::IntegerExpression.new(44)] )] )
|
@transform_output =Ast::ClassExpression.new(:Pifi ,[Ast::CallSiteExpression.new(:ofthen, [Ast::OperatorExpression.new("+", Ast::IntegerExpression.new(3),Ast::IntegerExpression.new(4)),Ast::NameExpression.new(:var)] ), Ast::FunctionExpression.new(:ofthen, [Ast::NameExpression.new("n"),Ast::NameExpression.new("m")] , [Ast::IntegerExpression.new(44)] )] )
|
||||||
@parser = @parser.class_definition
|
@parser = @parser.class_definition
|
||||||
end
|
end
|
||||||
def test_class_module
|
def test_class_module
|
||||||
@ -68,7 +68,7 @@ class Foo
|
|||||||
end
|
end
|
||||||
HERE
|
HERE
|
||||||
@parse_output = {:module_name=>"Foo", :class_expressions=>[{:module_name=>"Boo", :module_expressions=>[{:call_site=>{:name=>"funcall"}, :argument_list=>[{:argument=>{:l=>{:integer=>"3"}, :o=>"+", :r=>{:integer=>"4"}}}, {:argument=>{:name=>"var"}}]}], :end=>"end"}], :end=>"end"}
|
@parse_output = {:module_name=>"Foo", :class_expressions=>[{:module_name=>"Boo", :module_expressions=>[{:call_site=>{:name=>"funcall"}, :argument_list=>[{:argument=>{:l=>{:integer=>"3"}, :o=>"+", :r=>{:integer=>"4"}}}, {:argument=>{:name=>"var"}}]}], :end=>"end"}], :end=>"end"}
|
||||||
@transform_output = Ast::ClassExpression.new(:Foo ,[Ast::ModuleExpression.new(:Boo ,[Ast::CallSiteExpression.new(:funcall, [Ast::OperatorExpression.new("+", Ast::IntegerExpression.new(3),Ast::IntegerExpression.new(4)),Ast::NameExpression.new("var")] )] )] )
|
@transform_output = Ast::ClassExpression.new(:Foo ,[Ast::ModuleExpression.new(:Boo ,[Ast::CallSiteExpression.new(:funcall, [Ast::OperatorExpression.new("+", Ast::IntegerExpression.new(3),Ast::IntegerExpression.new(4)),Ast::NameExpression.new(:var)] )] )] )
|
||||||
@parser = @parser.class_definition
|
@parser = @parser.class_definition
|
||||||
end
|
end
|
||||||
end
|
end
|
@ -22,7 +22,7 @@ def String.length(x)
|
|||||||
end
|
end
|
||||||
HERE
|
HERE
|
||||||
@parse_output = {:receiver=>{:module_name=>"String"}, :function_name=>{:name=>"length"}, :parmeter_list=>[{:parmeter=>{:name=>"x"}}], :expressions=>[{:instance_variable=>{:name=>"length"}}], :end=>"end"}
|
@parse_output = {:receiver=>{:module_name=>"String"}, :function_name=>{:name=>"length"}, :parmeter_list=>[{:parmeter=>{:name=>"x"}}], :expressions=>[{:instance_variable=>{:name=>"length"}}], :end=>"end"}
|
||||||
@transform_output = Ast::FunctionExpression.new(:length, [Ast::NameExpression.new("x")] , [Ast::VariableExpression.new("length")] ,Ast::ModuleName.new("String") )
|
@transform_output = Ast::FunctionExpression.new(:length, [Ast::NameExpression.new("x")] , [Ast::VariableExpression.new(:length)] ,Ast::ModuleName.new("String") )
|
||||||
@parser = @parser.function_definition
|
@parser = @parser.function_definition
|
||||||
end
|
end
|
||||||
|
|
||||||
|
@ -36,7 +36,7 @@ module Opers
|
|||||||
end
|
end
|
||||||
HERE
|
HERE
|
||||||
@parse_output = {:module_name=>"Opers", :module_expressions=>[{:l=>{:instance_variable=>{:name=>"abba"}}, :o=>"= ", :r=>{:integer=>"5"}}], :end=>"end"}
|
@parse_output = {:module_name=>"Opers", :module_expressions=>[{:l=>{:instance_variable=>{:name=>"abba"}}, :o=>"= ", :r=>{:integer=>"5"}}], :end=>"end"}
|
||||||
@transform_output = Ast::ModuleExpression.new(:Opers ,[Ast::OperatorExpression.new("=", Ast::VariableExpression.new("abba"),Ast::IntegerExpression.new(5))] )
|
@transform_output = Ast::ModuleExpression.new(:Opers ,[Ast::OperatorExpression.new("=", Ast::VariableExpression.new(:abba),Ast::IntegerExpression.new(5))] )
|
||||||
@parser = @parser.module_definition
|
@parser = @parser.module_definition
|
||||||
end
|
end
|
||||||
|
|
||||||
|
@ -31,25 +31,25 @@ class TestExpressions < MiniTest::Test
|
|||||||
def test_op_variable
|
def test_op_variable
|
||||||
@string_input = "a + 35"
|
@string_input = "a + 35"
|
||||||
@parse_output = {:l=>{:name=>"a"}, :o=>"+ ", :r=>{:integer=>"35"}}
|
@parse_output = {:l=>{:name=>"a"}, :o=>"+ ", :r=>{:integer=>"35"}}
|
||||||
@transform_output = Ast::OperatorExpression.new("+", Ast::NameExpression.new("a"),Ast::IntegerExpression.new(35))
|
@transform_output = Ast::OperatorExpression.new("+", Ast::NameExpression.new(:a),Ast::IntegerExpression.new(35))
|
||||||
@parser = @parser.operator_expression
|
@parser = @parser.operator_expression
|
||||||
end
|
end
|
||||||
def test_op_two_variable
|
def test_op_two_variable
|
||||||
@string_input = "a - b"
|
@string_input = "a - b"
|
||||||
@parse_output = {:l=>{:name=>"a"}, :o=>"- ", :r=>{:name=>"b"}}
|
@parse_output = {:l=>{:name=>"a"}, :o=>"- ", :r=>{:name=>"b"}}
|
||||||
@transform_output = Ast::OperatorExpression.new("-", Ast::NameExpression.new("a"),Ast::NameExpression.new("b"))
|
@transform_output = Ast::OperatorExpression.new("-", Ast::NameExpression.new(:a),Ast::NameExpression.new("b"))
|
||||||
@parser = @parser.operator_expression
|
@parser = @parser.operator_expression
|
||||||
end
|
end
|
||||||
def test_op_instance_variable
|
def test_op_instance_variable
|
||||||
@string_input = "@a - 5"
|
@string_input = "@a - 5"
|
||||||
@parse_output = {:l=>{:instance_variable=>{:name=>"a"}}, :o=>"- ", :r=>{:integer=>"5"}}
|
@parse_output = {:l=>{:instance_variable=>{:name=>"a"}}, :o=>"- ", :r=>{:integer=>"5"}}
|
||||||
@transform_output = Ast::OperatorExpression.new("-", Ast::VariableExpression.new("a"),Ast::IntegerExpression.new(5))
|
@transform_output = Ast::OperatorExpression.new("-", Ast::VariableExpression.new(:a),Ast::IntegerExpression.new(5))
|
||||||
@parser = @parser.operator_expression
|
@parser = @parser.operator_expression
|
||||||
end
|
end
|
||||||
def test_op_variable_string
|
def test_op_variable_string
|
||||||
@string_input = 'a - "st"'
|
@string_input = 'a - "st"'
|
||||||
@parse_output = {:l=>{:name=>"a"}, :o=>"- ", :r=>{:string=>[{:char=>"s"}, {:char=>"t"}]}}
|
@parse_output = {:l=>{:name=>"a"}, :o=>"- ", :r=>{:string=>[{:char=>"s"}, {:char=>"t"}]}}
|
||||||
@transform_output = Ast::OperatorExpression.new("-", Ast::NameExpression.new("a"),Ast::StringExpression.new("st"))
|
@transform_output = Ast::OperatorExpression.new("-", Ast::NameExpression.new(:a),Ast::StringExpression.new("st"))
|
||||||
@parser = @parser.operator_expression
|
@parser = @parser.operator_expression
|
||||||
end
|
end
|
||||||
def test_two_same_ops
|
def test_two_same_ops
|
||||||
@ -73,13 +73,13 @@ class TestExpressions < MiniTest::Test
|
|||||||
def test_assignment
|
def test_assignment
|
||||||
@string_input = "a = 5"
|
@string_input = "a = 5"
|
||||||
@parse_output = {:l=>{:name=>"a"}, :o=>"= ", :r=>{:integer=>"5"}}
|
@parse_output = {:l=>{:name=>"a"}, :o=>"= ", :r=>{:integer=>"5"}}
|
||||||
@transform_output = Ast::OperatorExpression.new("=", Ast::NameExpression.new("a"),Ast::IntegerExpression.new(5))
|
@transform_output = Ast::OperatorExpression.new("=", Ast::NameExpression.new(:a),Ast::IntegerExpression.new(5))
|
||||||
@parser = @parser.operator_expression
|
@parser = @parser.operator_expression
|
||||||
end
|
end
|
||||||
def test_assignment_instance
|
def test_assignment_instance
|
||||||
@string_input = "@a = 5"
|
@string_input = "@a = 5"
|
||||||
@parse_output = {:l=>{:instance_variable=>{:name=>"a"}}, :o=>"= ", :r=>{:integer=>"5"}}
|
@parse_output = {:l=>{:instance_variable=>{:name=>"a"}}, :o=>"= ", :r=>{:integer=>"5"}}
|
||||||
@transform_output = Ast::OperatorExpression.new("=", Ast::VariableExpression.new("a"),Ast::IntegerExpression.new(5))
|
@transform_output = Ast::OperatorExpression.new("=", Ast::VariableExpression.new(:a),Ast::IntegerExpression.new(5))
|
||||||
@parser = @parser.operator_expression
|
@parser = @parser.operator_expression
|
||||||
end
|
end
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user