forked from proglangclass/interpreter
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinterpreter.rb
More file actions
126 lines (106 loc) · 2.39 KB
/
interpreter.rb
File metadata and controls
126 lines (106 loc) · 2.39 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
require "parser"
require "runtime"
class Interpreter
def initialize
@parser = Parser.new
end
def eval(code)
@parser.parse(code).eval(Runtime)
end
end
class Nodes
# This method is the "interpreter" part of our language. All nodes know how to eval
# itself and returns the result of its evaluation by implementing the "eval" method.
# The "context" variable is the environment in which the node is evaluated (local
# variables, current class, etc.).
def eval(context)
return_value = nil
nodes.each do |node|
return_value = node.eval(context)
end
return_value || Runtime["nil"]
end
end
class NumberNode
def eval(context)
Runtime["Number"].new_with_value(value)
end
end
class StringNode
def eval(context)
Runtime["String"].new_with_value(value)
end
end
class TrueNode
def eval(context)
Runtime["true"]
end
end
class FalseNode
def eval(context)
Runtime["false"]
end
end
class NilNode
def eval(context)
Runtime["nil"]
end
end
class AssignNode
# a = b = 1
def eval(context)
context.locals[name] = value.eval(context)
end
end
class ConstantNode
def eval(context)
context[name] || raise("Constant not found: #{name}")
end
end
class CallNode
def eval(context)
# Get local value
if receiver.nil? && context.locals[method] && arguments.empty?
context.locals[method]
# Method call
else
# 1.to_s
if receiver
value = receiver.eval(context)
else # (self.)print(1)
value = context.current_self
end
eval_arguments = arguments.map { |arg| arg.eval(context) }
value.call(method, eval_arguments)
end
end
end
class DefNode
def eval(context)
method = RMethod.new(params, body)
context.current_class.runtime_methods[name] = method
end
end
class ClassNode
def eval(context)
rclass = context[name]
unless rclass # Class doesn't exist yet
rclass = RClass.new
context[name] = rclass
end
class_context = Context.new(rclass, rclass)
body.eval(class_context)
rclass
end
end
class IfNode
def eval(context)
### Exercise
# Here you have access to:
# condition: condition node that will determine if the body should be executed
# body: node to be executed if the condition is true
if condition.eval(context).ruby_value
body.eval(context)
end
end
end