Method: Loxxy::Ast::LoxFunStmt#accept
- Defined in:
- lib/loxxy/ast/lox_fun_stmt.rb
#accept(visitor) ⇒ Object
Part of the 'visitee' role in Visitor design pattern.
28 29 30 |
# File 'lib/loxxy/ast/lox_fun_stmt.rb', line 28 def accept(visitor) visitor.visit_fun_stmt(self) end |