renamed true,false,nil class to constant (from value)
This commit is contained in:
@ -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)
|
||||
|
Reference in New Issue
Block a user