Sha256: fa82d29acaa51a5588821042d9fae54fc02b890f758bd1b1e2239689c9c02fb1
Contents?: true
Size: 397 Bytes
Versions: 14
Compression:
Stored size: 397 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 alias operands subnodes end # class end # module end # module
Version data entries
14 entries across 14 versions & 1 rubygems