Class: AsciiMath::AST::Empty

Inherits:
Node
  • Object
show all
Defined in:
lib/asciimath/ast.rb

Instance Attribute Summary

Attributes inherited from Node

#parent

Instance Method Summary collapse

Constructor Details

#initializeEmpty

Returns a new instance of Empty.



443
444
445
# File 'lib/asciimath/ast.rb', line 443

def initialize()
  super
end

Instance Method Details

#==(o) ⇒ Object



451
452
453
# File 'lib/asciimath/ast.rb', line 451

def ==(o)
  o.class == self.class
end

#to_sObject



447
448
449
# File 'lib/asciimath/ast.rb', line 447

def to_s
  ''
end