Sha256: 0c7a52d444933f0f7b80cc5c7911cbe0afb465e09f8d0852afbe3242314f4138
Contents?: true
Size: 214 Bytes
Versions: 20
Compression:
Stored size: 214 Bytes
Contents
# frozen_string_literal: true # Visitable is a mix-in module that makes a class visitable by a Visitor module Puppet::Pops::Visitable def accept(visitor, *arguments) visitor.visit(self, *arguments) end end
Version data entries
20 entries across 20 versions & 1 rubygems