first oo steps are wobbly, but a string.plus parses

This commit is contained in:
Torsten Ruger
2014-06-01 14:24:54 +03:00
parent 86431120d5
commit 9ea0acf2e3
5 changed files with 48 additions and 9 deletions

View File

@ -35,4 +35,11 @@ module Ast
end
end
class VariableExpression < CallSiteExpression
def initialize name
super( :_get_instance_variable , [StringExpression.new(name)] )
end
end
end