Class: AsciiMath::AST::Empty
Instance Attribute Summary
Attributes inherited from Node
Instance Method Summary collapse
- #==(o) ⇒ Object
-
#initialize ⇒ Empty
constructor
A new instance of Empty.
- #to_s ⇒ Object
Constructor Details
#initialize ⇒ Empty
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_s ⇒ Object
447 448 449 |
# File 'lib/asciimath/ast.rb', line 447 def to_s '' end |