Source code for nxpy.ply.parser
# nxpy.ply package -----------------------------------------------------------
# Copyright Nicola Musatti 2010 - 2014
# Use, modification, and distribution are subject to the Boost Software
# License, Version 1.0. (See accompanying file LICENSE.txt or copy at
# http://www.boost.org/LICENSE_1_0.txt)
# See http://nxpy.sourceforge.net for library home page. ---------------------
r"""
Class wrapper for PLY's yacc module.
"""
from __future__ import absolute_import
import ply.yacc
[docs]class Parser(object):
[docs] def __init__(self, scanner, debug=False):
self.scanner = scanner
self.debug = debug
Parser.tokens = self.scanner.tokens
self.parser = ply.yacc.yacc(module=self, debug=self.debug)
[docs] def parse(self, input_):
self.scanner.reset(input_)
return self.parser.parse(lexer=self.scanner.lexer)