当前位置: 首页>>代码示例>>Python>>正文


Python CONFIG.match_char_constant方法代码示例

本文整理汇总了Python中CONFIG.match_char_constant方法的典型用法代码示例。如果您正苦于以下问题:Python CONFIG.match_char_constant方法的具体用法?Python CONFIG.match_char_constant怎么用?Python CONFIG.match_char_constant使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在CONFIG的用法示例。


在下文中一共展示了CONFIG.match_char_constant方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。

示例1: detect_token

# 需要导入模块: import CONFIG [as 别名]
# 或者: from CONFIG import match_char_constant [as 别名]
    def detect_token(self, token):
        """
        Identifies (classifies, validates) tokens.
        :param token: Token
        :return: None
        :raises: ScannerException
        """

        if token in CONFIG.RESERVED_WORDS:
            logging.debug('reserved word:{0}'.format(token))
            self.add_to_pif(code=CONFIG.CODIFICATION_MAP[token], index=-1)
            return

        elif CONFIG.match_int_constant(token):
            logging.debug('integer constant:{0}'.format(token))
            st_index = self.add_to_st(token=token, constant=True)
            self.add_to_pif(code=CONFIG.CODIFICATION_MAP['constant'], index=st_index)
            return

        elif CONFIG.match_char_constant(token):
            logging.debug('character constant:{0}'.format(token))
            st_index = self.add_to_st(token=token.split('\'')[1], constant=True)
            self.add_to_pif(code=CONFIG.CODIFICATION_MAP['constant'], index=st_index)
            return

        elif token in CONFIG.SEPARATORS:
            logging.debug('separator:{0}'.format(token))
            self.add_to_pif(code=CONFIG.CODIFICATION_MAP[token], index=-1)
            return

        elif token in CONFIG.ARITHMETIC_OPERATORS:
            logging.debug('arithmetic operator:{0}'.format(token))
            self.add_to_pif(code=CONFIG.CODIFICATION_MAP[token], index=-1)
            return

        elif token in CONFIG.COMPARATORS:
            logging.debug('comparator:{0}'.format(token))
            self.add_to_pif(code=CONFIG.CODIFICATION_MAP[token], index=-1)
            return

        elif CONFIG.match_identifier(token):
            logging.debug('identifier:{0}'.format(token))
            st_index = self.add_to_st(token=token, constant=False)
            self.add_to_pif(code=CONFIG.CODIFICATION_MAP['identifier'], index=st_index)
            return

        # Token couldn't be identified, raise exception
        raise ScannerException('Syntax error: {0}'.format(token))
开发者ID:zalcyon,项目名称:pyparser,代码行数:50,代码来源:pyscanner.py


注:本文中的CONFIG.match_char_constant方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。