5fe0ba06ab
moving on to getting mom to work and can’t have both interpreter and elf broke, about 100 tests went
11 lines
172 B
Ruby
11 lines
172 B
Ruby
module Vm
|
|
module Tree
|
|
class FieldAccess < Expression
|
|
attr_accessor :receiver , :field
|
|
def to_s
|
|
"#{receiver}.#{field}"
|
|
end
|
|
end
|
|
end
|
|
end
|