Method: JMESPath::Parser#initialize
- Defined in:
- lib/jmespath/parser.rb
#initialize(options = {}) ⇒ Parser
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
Returns a new instance of Parser.
30 31 32 33 |
# File 'lib/jmespath/parser.rb', line 30 def initialize( = {}) @lexer = [:lexer] || Lexer.new @disable_visit_errors = [:disable_visit_errors] end |