Class: Loxxy::Ast::LoxNoopExpr
- Defined in:
- lib/loxxy/ast/lox_noop_expr.rb
Instance Attribute Summary
Attributes inherited from LoxNode
Instance Method Summary collapse
-
#accept(_visitor) ⇒ Object
Abstract method.
Methods inherited from LoxNode
Methods included from ASTVisitee
Constructor Details
This class inherits a constructor from Loxxy::Ast::LoxNode
Instance Method Details
#accept(_visitor) ⇒ Object
Abstract method. Part of the 'visitee' role in Visitor design pattern.
11 12 13 |
# File 'lib/loxxy/ast/lox_noop_expr.rb', line 11 def accept(_visitor) # Do nothing... end |