module Gammo
Code generated by rake generate; DO NOT EDIT.
Constants
- VERSION
Public Class Methods
new(input, fragment: false, **options)
click to toggle source
Constructs a parser based on the input.
@param [String] input @param [TrueClass, FalseClass] fragment @param [Hash] options @return [Gammo::Parser]
# File lib/gammo.rb, line 12 def self.new(input, fragment: false, **options) (fragment ? FragmentParser : Parser).new(input, **options) end