adds basic math operators, thanks to kasper associative and prioritised
This commit is contained in:
parent
6378209f33
commit
2d389d2e00
@ -41,8 +41,8 @@ module Ast
|
|||||||
def initialize str
|
def initialize str
|
||||||
@string = str
|
@string = str
|
||||||
end
|
end
|
||||||
def inspectt
|
def inspect
|
||||||
"#{string}"
|
self.class.name + '.new("' + string + '")'
|
||||||
end
|
end
|
||||||
|
|
||||||
def compile context
|
def compile context
|
||||||
|
@ -45,4 +45,40 @@ module Ast
|
|||||||
[:assignee, :assigned]
|
[:assignee, :assigned]
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
class OperatorExpression < Expression
|
||||||
|
attr_reader :operator, :left, :right
|
||||||
|
|
||||||
|
def initialize operator, left, right
|
||||||
|
@operator, @left, @right = operator, left, right
|
||||||
|
end
|
||||||
|
def attributes
|
||||||
|
[:operator, :left, :right]
|
||||||
|
end
|
||||||
|
def inspect
|
||||||
|
self.class.name + ".new(" + operator.inspect + ", " + left.inspect + "," + right.inspect + ")"
|
||||||
|
end
|
||||||
|
|
||||||
|
def compile context
|
||||||
|
parent_locals = context.locals
|
||||||
|
context.locals = {}
|
||||||
|
args = []
|
||||||
|
params.each do |param|
|
||||||
|
args << param.compile(context) # making the argument a local
|
||||||
|
end
|
||||||
|
# args = params.collect{|p| Vm::Value.type p.name }
|
||||||
|
function = Vm::Function.new(name ,args )
|
||||||
|
context.program.add_function function
|
||||||
|
block.each do |b|
|
||||||
|
compiled = b.compile context
|
||||||
|
if compiled.is_a? Vm::Block
|
||||||
|
he.breaks.loose
|
||||||
|
else
|
||||||
|
function.body.add_code compiled
|
||||||
|
end
|
||||||
|
puts compiled.inspect
|
||||||
|
end
|
||||||
|
context.locals = parent_locals if parent_locals
|
||||||
|
function
|
||||||
|
end
|
||||||
|
end
|
||||||
end
|
end
|
@ -14,5 +14,9 @@ module Parser
|
|||||||
rule(:expressions_else) { delimited_expressions(keyword_else) }
|
rule(:expressions_else) { delimited_expressions(keyword_else) }
|
||||||
rule(:expressions_end) { delimited_expressions(keyword_end) }
|
rule(:expressions_end) { delimited_expressions(keyword_end) }
|
||||||
|
|
||||||
|
rule(:operator_expression) do
|
||||||
|
infix_expression(expression, [multiply, 2, :left], [plus, 1, :right])
|
||||||
|
end
|
||||||
|
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
@ -14,5 +14,8 @@ module Parser
|
|||||||
rule(:semicolon) { str(';') >> space? }
|
rule(:semicolon) { str(';') >> space? }
|
||||||
rule(:question_mark) { str('?') >> space? }
|
rule(:question_mark) { str('?') >> space? }
|
||||||
rule(:excamation_mark) { str('!') >> space? }
|
rule(:excamation_mark) { str('!') >> space? }
|
||||||
|
|
||||||
|
rule(:multiply) { match['*/'] >> space? }
|
||||||
|
rule(:plus) { match['+-'] >> space? }
|
||||||
end
|
end
|
||||||
end
|
end
|
@ -41,6 +41,11 @@ module Parser
|
|||||||
rule(:asignee => simple(:left) , :asigned => simple(:right) ) do
|
rule(:asignee => simple(:left) , :asigned => simple(:right) ) do
|
||||||
Ast::AssignmentExpression.new(left , right )
|
Ast::AssignmentExpression.new(left , right )
|
||||||
end
|
end
|
||||||
|
|
||||||
|
rule(l: simple(:l), o: simple(:o) , r: simple(:r)) do
|
||||||
|
Ast::OperatorExpression.new( o.to_s.strip , l ,r)
|
||||||
|
end
|
||||||
|
|
||||||
#shortcut to get the ast tree for a given string
|
#shortcut to get the ast tree for a given string
|
||||||
# optional second arguement specifies a rule that will be parsed (mainly for testing)
|
# optional second arguement specifies a rule that will be parsed (mainly for testing)
|
||||||
def self.ast string , rule = :root
|
def self.ast string , rule = :root
|
||||||
|
@ -35,4 +35,59 @@ HERE
|
|||||||
@parser = @parser.expressions_end
|
@parser = @parser.expressions_end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
||||||
|
def simple_op op
|
||||||
|
@string_input = "5 #{op} 3"
|
||||||
|
@parse_output = {:l=>{:integer=>"5"}, :o=>"#{op} ", :r=>{:integer=>"3"}}
|
||||||
|
@transform_output = Ast::OperatorExpression.new(op, Ast::IntegerExpression.new(5),Ast::IntegerExpression.new(3))
|
||||||
|
@parser = @parser.operator_expression
|
||||||
|
end
|
||||||
|
def test_simple_multiply
|
||||||
|
simple_op "*"
|
||||||
|
end
|
||||||
|
def test_simple_devide
|
||||||
|
simple_op "/"
|
||||||
|
end
|
||||||
|
def test_simple_plus
|
||||||
|
simple_op "+"
|
||||||
|
end
|
||||||
|
def test_simple_minus
|
||||||
|
simple_op "-"
|
||||||
|
end
|
||||||
|
def test_op_variable
|
||||||
|
@string_input = "a + 35"
|
||||||
|
@parse_output = {:l=>{:name=>"a"}, :o=>"+ ", :r=>{:integer=>"35"}}
|
||||||
|
@transform_output = Ast::OperatorExpression.new("+", Ast::NameExpression.new("a"),Ast::IntegerExpression.new(35))
|
||||||
|
@parser = @parser.operator_expression
|
||||||
|
end
|
||||||
|
def test_op_two_variable
|
||||||
|
@string_input = "a - b"
|
||||||
|
@parse_output = {:l=>{:name=>"a"}, :o=>"- ", :r=>{:name=>"b"}}
|
||||||
|
@transform_output = Ast::OperatorExpression.new("-", Ast::NameExpression.new("a"),Ast::NameExpression.new("b"))
|
||||||
|
@parser = @parser.operator_expression
|
||||||
|
end
|
||||||
|
def test_op_variable_string
|
||||||
|
@string_input = 'a - "st"'
|
||||||
|
@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"))
|
||||||
|
@parser = @parser.operator_expression
|
||||||
|
end
|
||||||
|
def test_two_same_ops
|
||||||
|
@string_input = '2 + 3 + 4'
|
||||||
|
@parse_output = {:l=>{:integer=>"2"}, :o=>"+ ", :r=>{:l=>{:integer=>"3"}, :o=>"+ ", :r=>{:integer=>"4"}}}
|
||||||
|
@transform_output = Ast::OperatorExpression.new("+", Ast::IntegerExpression.new(2),Ast::OperatorExpression.new("+", Ast::IntegerExpression.new(3),Ast::IntegerExpression.new(4)))
|
||||||
|
@parser = @parser.operator_expression
|
||||||
|
end
|
||||||
|
def test_two_different_ops
|
||||||
|
@string_input = '2 + 3 * 4'
|
||||||
|
@parse_output = {:l=>{:integer=>"2"}, :o=>"+ ", :r=>{:l=>{:integer=>"3"}, :o=>"* ", :r=>{:integer=>"4"}}}
|
||||||
|
@transform_output = Ast::OperatorExpression.new("+", Ast::IntegerExpression.new(2),Ast::OperatorExpression.new("*", Ast::IntegerExpression.new(3),Ast::IntegerExpression.new(4)))
|
||||||
|
@parser = @parser.operator_expression
|
||||||
|
end
|
||||||
|
def test_two_different_ops_order
|
||||||
|
@string_input = '2 * 3 + 4'
|
||||||
|
@parse_output = {:l=>{:l=>{:integer=>"2"}, :o=>"* ", :r=>{:integer=>"3"}}, :o=>"+ ", :r=>{:integer=>"4"}}
|
||||||
|
@transform_output = Ast::OperatorExpression.new("+", Ast::OperatorExpression.new("*", Ast::IntegerExpression.new(2),Ast::IntegerExpression.new(3)),Ast::IntegerExpression.new(4))
|
||||||
|
@parser = @parser.operator_expression
|
||||||
|
end
|
||||||
end
|
end
|
@ -34,7 +34,7 @@ HERE
|
|||||||
@parser = @parser.function_definition
|
@parser = @parser.function_definition
|
||||||
end
|
end
|
||||||
|
|
||||||
def test_function_while
|
def ttest_function_while
|
||||||
@string_input = <<HERE
|
@string_input = <<HERE
|
||||||
def fibonaccit(n)
|
def fibonaccit(n)
|
||||||
a = 0
|
a = 0
|
||||||
|
Loading…
Reference in New Issue
Block a user