本文整理汇总了Python中oodle.G.G.fileConcat方法的典型用法代码示例。如果您正苦于以下问题:Python G.fileConcat方法的具体用法?Python G.fileConcat怎么用?Python G.fileConcat使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类oodle.G.G
的用法示例。
在下文中一共展示了G.fileConcat方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: main
# 需要导入模块: from oodle.G import G [as 别名]
# 或者: from oodle.G.G import fileConcat [as 别名]
def main():
if len(sys.argv) < 2:
print "usage:"
print " java Oodle filename"
return
#HACK - add readint() and writeint() declarations
G.typeMap().addExtern(ExternDecl('readint', 'int'))
G.typeMap().addExtern(ExternDecl('writeint')).addParam(LocalVarDecl('i', 'int'))
G.options().parseArgs(sys.argv[1:])
flist = G.fileConcat ()
for f in G.options().getFileList():
flist.appendFile(f)
st_node = None
print 'Lexing...'
lex = Lexer(flist.getConcatFile().getAbsolutePath())
print 'Parsing...'
par = Parser(lex)
try:
st_node = par.parse()
except ParserException, e:
G.errors().syntax().add(e.getMessage())
示例2: printMsg
# 需要导入模块: from oodle.G import G [as 别名]
# 或者: from oodle.G.G import fileConcat [as 别名]
def printMsg(self, tok_name, txt=None):
'''Do the actual making and printing of the message
@tok_name: token name
@txt: token text
@RETURN: the message'''
tk = self.peek() #Token
txt = ':' + tk.getText() if txt == None else ""
msg = G.fileConcat().correctNameAndNumber(tk.getLine()) + ',' + str(tk.getPos()) + ':' + tok_name + txt
print msg
return msg