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


Python lex.lexer方法代码示例

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


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

示例1: parse

# 需要导入模块: from ply import lex [as 别名]
# 或者: from ply.lex import lexer [as 别名]
def parse(self,input=None,lexer=None,debug=0,tracking=0,tokenfunc=None):
        if debug or yaccdevel:
            if isinstance(debug,int):
                debug = PlyLogger(sys.stderr)
            return self.parsedebug(input,lexer,debug,tracking,tokenfunc)
        elif tracking:
            return self.parseopt(input,lexer,debug,tracking,tokenfunc)
        else:
            return self.parseopt_notrack(input,lexer,debug,tracking,tokenfunc)
        

    # !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
    # parsedebug().
    #
    # This is the debugging enabled version of parse().  All changes made to the
    # parsing engine should be made here.   For the non-debugging version,
    # copy this code to a method parseopt() and delete all of the sections
    # enclosed in:
    #
    #      #--! DEBUG
    #      statements
    #      #--! DEBUG
    #
    # !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! 
开发者ID:nojanath,项目名称:SublimeKSP,代码行数:26,代码来源:yacc.py

示例2: __init__

# 需要导入模块: from ply import lex [as 别名]
# 或者: from ply.lex import lexer [as 别名]
def __init__(self,lexer=None):
        if lexer is None:
            lexer = lex.lexer
        self.lexer = lexer
        self.macros = { }
        self.path = []
        self.temp_path = []

        # Probe the lexer for selected tokens
        self.lexprobe()

        tm = time.localtime()
        self.define("__DATE__ \"%s\"" % time.strftime("%b %d %Y",tm))
        self.define("__TIME__ \"%s\"" % time.strftime("%H:%M:%S",tm))
        self.parser = None

    # -----------------------------------------------------------------------------
    # tokenize()
    #
    # Utility function. Given a string of text, tokenize into a list of tokens
    # ----------------------------------------------------------------------------- 
开发者ID:nojanath,项目名称:SublimeKSP,代码行数:23,代码来源:cpp.py

示例3: __init__

# 需要导入模块: from ply import lex [as 别名]
# 或者: from ply.lex import lexer [as 别名]
def __init__(self,s,stack=None):
        self.slice = s
        self.stack = stack
        self.lexer = None
        self.parser= None 
开发者ID:nojanath,项目名称:SublimeKSP,代码行数:7,代码来源:yacc.py

示例4: t_CPP_WS

# 需要导入模块: from ply import lex [as 别名]
# 或者: from ply.lex import lexer [as 别名]
def t_CPP_WS(t):
    r'\s+'
    t.lexer.lineno += t.value.count("\n")
    return t 
开发者ID:nojanath,项目名称:SublimeKSP,代码行数:6,代码来源:cpp.py

示例5: t_CPP_STRING

# 需要导入模块: from ply import lex [as 别名]
# 或者: from ply.lex import lexer [as 别名]
def t_CPP_STRING(t):
    r'\"([^\\\n]|(\\(.|\n)))*?\"'
    t.lexer.lineno += t.value.count("\n")
    return t

# Character constant 'c' or L'c' 
开发者ID:nojanath,项目名称:SublimeKSP,代码行数:8,代码来源:cpp.py

示例6: t_CPP_CHAR

# 需要导入模块: from ply import lex [as 别名]
# 或者: from ply.lex import lexer [as 别名]
def t_CPP_CHAR(t):
    r'(L)?\'([^\\\n]|(\\(.|\n)))*?\''
    t.lexer.lineno += t.value.count("\n")
    return t

# Comment 
开发者ID:nojanath,项目名称:SublimeKSP,代码行数:8,代码来源:cpp.py

示例7: t_error

# 需要导入模块: from ply import lex [as 别名]
# 或者: from ply.lex import lexer [as 别名]
def t_error(t):
    t.type = t.value[0]
    t.value = t.value[0]
    t.lexer.skip(1)
    return t 
开发者ID:nojanath,项目名称:SublimeKSP,代码行数:7,代码来源:cpp.py

示例8: tokenize

# 需要导入模块: from ply import lex [as 别名]
# 或者: from ply.lex import lexer [as 别名]
def tokenize(self,text):
        tokens = []
        self.lexer.input(text)
        while True:
            tok = self.lexer.token()
            if not tok: break
            tokens.append(tok)
        return tokens

    # ---------------------------------------------------------------------
    # error()
    #
    # Report a preprocessor error/warning of some kind
    # ---------------------------------------------------------------------- 
开发者ID:nojanath,项目名称:SublimeKSP,代码行数:16,代码来源:cpp.py

示例9: error

# 需要导入模块: from ply import lex [as 别名]
# 或者: from ply.lex import lexer [as 别名]
def error(self,file,line,msg):
        print("%s:%d %s" % (file,line,msg))

    # ----------------------------------------------------------------------
    # lexprobe()
    #
    # This method probes the preprocessor lexer object to discover
    # the token types of symbols that are important to the preprocessor.
    # If this works right, the preprocessor will simply "work"
    # with any suitable lexer regardless of how tokens have been named.
    # ---------------------------------------------------------------------- 
开发者ID:nojanath,项目名称:SublimeKSP,代码行数:13,代码来源:cpp.py

示例10: t_CPP_COMMENT1

# 需要导入模块: from ply import lex [as 别名]
# 或者: from ply.lex import lexer [as 别名]
def t_CPP_COMMENT1(t):
    r'(/\*(.|\n)*?\*/)'
    ncr = t.value.count("\n")
    t.lexer.lineno += ncr
    # replace with one space or a number of '\n'
    t.type = 'CPP_WS'; t.value = '\n' * ncr if ncr else ' '
    return t

# Line comment 
开发者ID:remg427,项目名称:misp42splunk,代码行数:11,代码来源:cpp.py

示例11: group_lines

# 需要导入模块: from ply import lex [as 别名]
# 或者: from ply.lex import lexer [as 别名]
def group_lines(self,input):
        lex = self.lexer.clone()
        lines = [x.rstrip() for x in input.splitlines()]
        for i in xrange(len(lines)):
            j = i+1
            while lines[i].endswith('\\') and (j < len(lines)):
                lines[i] = lines[i][:-1]+lines[j]
                lines[j] = ""
                j += 1

        input = "\n".join(lines)
        lex.input(input)
        lex.lineno = 1

        current_line = []
        while True:
            tok = lex.token()
            if not tok:
                break
            current_line.append(tok)
            if tok.type in self.t_WS and '\n' in tok.value:
                yield current_line
                current_line = []

        if current_line:
            yield current_line

    # ----------------------------------------------------------------------
    # tokenstrip()
    #
    # Remove leading/trailing whitespace tokens from a token list
    # ---------------------------------------------------------------------- 
开发者ID:remg427,项目名称:misp42splunk,代码行数:34,代码来源:cpp.py


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