class Prism::Pattern

def initialize(query)

containing a Ruby pattern matching expression.
Create a new pattern with the given query. The query should be a string
def initialize(query)
  @query = query
  @compiled = nil
end