fix true false and nil constant

going from mom to parfait
basics in place, more ripples to fix
This commit is contained in:
Torsten Ruger
2018-03-31 13:47:02 +03:00
parent 9e9b5c7f37
commit cb9f6973d9
10 changed files with 51 additions and 16 deletions

View File

@ -29,10 +29,19 @@ module Parfait
end
# adding other base classes in here for now:
class FalseClass
class FalseClass < Data2
#FIXME: this is "just" for compilation
def initialize
end
end
class TrusClass
class TrueClass < Data2
#FIXME: this is "just" for compilation
def initialize
end
end
class NilClass
class NilClass < Data2
#FIXME: this is "just" for compilation
def initialize
end
end
end