Method: AsciiMath::AST::InfixOp#initialize
- Defined in:
- lib/asciimath/ast.rb
#initialize(operator, e1, e2) ⇒ InfixOp
Returns a new instance of InfixOp.
279 280 281 282 283 284 |
# File 'lib/asciimath/ast.rb', line 279 def initialize(operator, e1, e2) super() add(operator) add(e1) add(e2) end |