renamed true,false,nil class to constant (from value)

This commit is contained in:
Torsten Ruger
2014-09-14 18:15:33 +03:00
parent 6b85054958
commit c51dbf51e1
3 changed files with 7 additions and 7 deletions

View File

@ -2,11 +2,11 @@ module Virtual
class Constant < ::Virtual::Value
end
class TrueValue < Constant
class TrueConstant < Constant
end
class FalseValue < Constant
class FalseConstant < Constant
end
class NilValue < Constant
class NilConstant < Constant
end
# another abstract "marker" class (so we can check for it)