adds instance and class variables to vool

This commit is contained in:
Torsten Ruger
2017-04-04 14:04:35 +03:00
parent 83ab197d03
commit 5f70067fa0
3 changed files with 39 additions and 0 deletions

View File

@ -9,4 +9,13 @@ module Vool
class LocalVariable < Statement
include Named
end
class InstanceVariable < Statement
include Named
end
class ClassVariable < Statement
include Named
end
end