Sha256: be43d59f47ed46e174984e3f3c78936e9959021a07a7204903fa76294b82a258
Contents?: true
Size: 737 Bytes
Versions: 11
Compression:
Stored size: 737 Bytes
Contents
# frozen_string_literal: true module Unparser class Emitter # Emitter for splats class KwSplat < self include Terminated handle :kwsplat children :subject private # Perform dispatch # # @return [undefined] # # @api private # def dispatch write(T_SPLAT, T_SPLAT) visit(subject) end end # Emitter for splats class Splat < self include Terminated handle :splat children :subject private # Perform dispatch # # @return [undefined] # # @api private # def dispatch write(T_SPLAT) visit(subject) if subject end end end end # Unparser
Version data entries
11 entries across 11 versions & 1 rubygems