module Querly::Pattern::Kind::Negatable

Attributes

negated[R]

Public Class Methods

new(expr:, negated:) click to toggle source
Calls superclass method
# File lib/querly/pattern/kind.rb, line 15
def initialize(expr:, negated:)
  @negated = negated
  super(expr: expr)
end