adding stubs for coming classes

This commit is contained in:
Torsten Ruger
2015-04-06 11:38:11 +03:00
parent 2a0dc7242a
commit 4f1e99d744
6 changed files with 14 additions and 6 deletions
-2
View File
@@ -1,5 +1,3 @@
# this is not a "normal" ruby file, ie it is not required by salama
# instead it is parsed by salama to define part of the program that runs
class Array < BaseObject
#many basic array functions can not be defined in ruby, such as
+2
View File
@@ -0,0 +1,2 @@
class Class
end
+4
View File
@@ -0,0 +1,4 @@
class Frame
end
+2 -4
View File
@@ -1,8 +1,6 @@
# this is not a "normal" ruby file, ie it is not required by salama
# instead it is parsed by salama to define part of the program that runs
class Frame #just for now
end
# A message is what is sent when you invoke a method. Args and stuff are packed up in to a Message
# and the Message is sent to the receiver.
class Message
+3
View File
@@ -0,0 +1,3 @@
class Page
end
+3
View File
@@ -0,0 +1,3 @@
class Space
end