class TestML::None

Public Class Methods

new() click to toggle source
Calls superclass method TestML::Object::new
# File lib/testml/runtime.rb, line 471
def initialize
  super(nil)
end

Public Instance Methods

bool() click to toggle source
# File lib/testml/runtime.rb, line 480
def bool
  TestML::Constant::False
end
list() click to toggle source
# File lib/testml/runtime.rb, line 483
def list
  TestML::List.new []
end
num() click to toggle source
# File lib/testml/runtime.rb, line 477
def num
  TestML::Num.new(0)
end
str() click to toggle source
# File lib/testml/runtime.rb, line 474
def str
  TestML::Str.new('')
end