class Querly::Pattern::Argument::KeyValue

Attributes

key[R]
negated[R]
value[R]

Public Class Methods

new(key:, value:, tail:, negated: false) click to toggle source
Calls superclass method Querly::Pattern::Argument::Base::new
# File lib/querly/pattern/argument.rb, line 42
def initialize(key:, value:, tail:, negated: false)
  @key = key
  @value = value
  @negated = negated

  super(tail: tail)
end