Class: Loxxy::Ast::LoxSeqDecl
- Inherits:
-
LoxCompoundExpr
- Object
- LoxNode
- LoxCompoundExpr
- Loxxy::Ast::LoxSeqDecl
- Defined in:
- lib/loxxy/ast/lox_seq_decl.rb
Instance Attribute Summary
Attributes inherited from LoxCompoundExpr
Attributes inherited from LoxNode
Instance Method Summary collapse
-
#accept(visitor) ⇒ Object
Part of the 'visitee' role in Visitor design pattern.
Methods inherited from LoxCompoundExpr
Methods inherited from LoxNode
Constructor Details
This class inherits a constructor from Loxxy::Ast::LoxCompoundExpr
Instance Method Details
#accept(visitor) ⇒ Object
Part of the 'visitee' role in Visitor design pattern.
10 11 12 |
# File 'lib/loxxy/ast/lox_seq_decl.rb', line 10 def accept(visitor) visitor.visit_seq_decl(self) end |