module MtgSearchParser

Constants

VERSION

Public Class Methods

parse(string, max_count = Float::INFINITY) click to toggle source
# File lib/mtg_search_parser.rb, line 40
def self.parse(string, max_count = Float::INFINITY)
  tokens = Lexer.new.lex(string)
  ParseExecutor.new.parse(tokens)
end