Class: TrackRelay::Linter::Signature
- Inherits:
-
Struct
- Object
- Struct
- TrackRelay::Linter::Signature
- Defined in:
- lib/track_relay/linter.rb
Overview
One signature per distinct sorted-param-name shape under an event.
Instance Attribute Summary collapse
-
#count ⇒ Object
How many times this exact signature was seen.
-
#params ⇒ Object
Sorted array of parameter NAMES (no values).
Instance Attribute Details
#count ⇒ Object
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) |
#params ⇒ Object
Sorted array of parameter NAMES (no values).
59 |
# File 'lib/track_relay/linter.rb', line 59 Signature = Struct.new(:params, :count, keyword_init: true) |