Class: TrackRelay::Linter::Signature

Inherits:
Struct
  • Object
show all
Defined in:
lib/track_relay/linter.rb

Overview

One signature per distinct sorted-param-name shape under an event.

Instance Attribute Summary collapse

Instance Attribute Details

#countObject

How many times this exact signature was seen.



59
# File 'lib/track_relay/linter.rb', line 59

Signature = Struct.new(:params, :count, keyword_init: true)

#paramsObject

Sorted array of parameter NAMES (no values).



59
# File 'lib/track_relay/linter.rb', line 59

Signature = Struct.new(:params, :count, keyword_init: true)