start on vool, the virtual oo language
start with syntax tree, not linked into existing code until finished
This commit is contained in:
10
lib/vool/class_statement.rb
Normal file
10
lib/vool/class_statement.rb
Normal file
@ -0,0 +1,10 @@
|
||||
module Vool
|
||||
class ClassStatement
|
||||
attr_reader :name, :super_class_name , :body
|
||||
|
||||
def initialize( name , supe , body)
|
||||
@name , @super_class_name , @body = name , supe , body
|
||||
end
|
||||
|
||||
end
|
||||
end
|
Reference in New Issue
Block a user