Sha256: 72d0778bb6f7881707b468d9d2158ad8cdbb58593e9a40e29923d86783e91a8a
Contents?: true
Size: 364 Bytes
Versions: 1
Compression:
Stored size: 364 Bytes
Contents
# frozen_string_literal: true module SpyAlleyApplication module Results module Nodes class PassOptionNode @@can_handle_pass_option = ::Types.Interface(:handle_pass_option) def accept(visitor, **args) @@can_handle_pass_option.(visitor) visitor.handle_pass_option(self, args) end end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
spy_alley_application-0.3.2 | lib/spy_alley_application/results/nodes/pass_option_node.rb |