本文整理汇总了Python中Ophis.Frontend.parse_file方法的典型用法代码示例。如果您正苦于以下问题:Python Frontend.parse_file方法的具体用法?Python Frontend.parse_file怎么用?Python Frontend.parse_file使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Ophis.Frontend
的用法示例。
在下文中一共展示了Frontend.parse_file方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: pragmaRequire
# 需要导入模块: from Ophis import Frontend [as 别名]
# 或者: from Ophis.Frontend import parse_file [as 别名]
def pragmaRequire(ppt, line, result):
"Includes a source file at most one time"
filename = str(os.path.dirname(sys.argv[1])) + os.sep + line.expect("STRING").value
line.expect("EOL")
if type(filename)==str:
global loadedfiles
if filename not in loadedfiles:
loadedfiles[filename]=1
result.append(FE.parse_file(ppt,filename))
示例2: pragmaRequire
# 需要导入模块: from Ophis import Frontend [as 别名]
# 或者: from Ophis.Frontend import parse_file [as 别名]
def pragmaRequire(ppt, line, result):
"Includes a source file at most one time"
filename = line.expect("STRING").value
line.expect("EOL")
if type(filename) == str:
result.append(FE.parse_file(ppt, filename, True))
示例3: pragmaInclude
# 需要导入模块: from Ophis import Frontend [as 别名]
# 或者: from Ophis.Frontend import parse_file [as 别名]
def pragmaInclude(ppt, line, result):
"Includes a source file"
filename = line.expect("STRING").value
line.expect("EOL")
if type(filename) == str:
result.append(FE.parse_file(ppt, filename))
示例4: pragmaInclude
# 需要导入模块: from Ophis import Frontend [as 别名]
# 或者: from Ophis.Frontend import parse_file [as 别名]
def pragmaInclude(ppt, line, result):
"Includes a source file"
filename = str(os.path.dirname(sys.argv[1])) + os.sep + line.expect("STRING").value
line.expect("EOL")
if type(filename)==str: result.append(FE.parse_file(ppt,filename))