Sha256: 28889e4c938efb85aecb9f263ea58bbd8c8f8e57b4f9c1d1e229f42d30c5bceb
Contents?: true
Size: 366 Bytes
Versions: 13
Compression:
Stored size: 366 Bytes
Contents
# frozen_string_literal: true require_relative 'lox_compound_expr' module Loxxy module Ast class LoxSeqDecl < LoxCompoundExpr # Part of the 'visitee' role in Visitor design pattern. # @param visitor [Ast::ASTVisitor] the visitor def accept(visitor) visitor.visit_seq_decl(self) end end # class end # module end # module
Version data entries
13 entries across 13 versions & 1 rubygems