adding stubs for coming classes
This commit is contained in:
parent
2a0dc7242a
commit
4f1e99d744
@ -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
lib/parfait/class.rb
Normal file
2
lib/parfait/class.rb
Normal file
@ -0,0 +1,2 @@
|
||||
class Class
|
||||
end
|
4
lib/parfait/frame.rb
Normal file
4
lib/parfait/frame.rb
Normal file
@ -0,0 +1,4 @@
|
||||
|
||||
class Frame
|
||||
|
||||
end
|
@ -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
lib/parfait/page.rb
Normal file
3
lib/parfait/page.rb
Normal file
@ -0,0 +1,3 @@
|
||||
|
||||
class Page
|
||||
end
|
3
lib/parfait/space.rb
Normal file
3
lib/parfait/space.rb
Normal file
@ -0,0 +1,3 @@
|
||||
|
||||
class Space
|
||||
end
|
Loading…
Reference in New Issue
Block a user