本文整理汇总了Python中ufora.FORA.python.FORA.pythonToFORA方法的典型用法代码示例。如果您正苦于以下问题:Python FORA.pythonToFORA方法的具体用法?Python FORA.pythonToFORA怎么用?Python FORA.pythonToFORA使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类ufora.FORA.python.FORA
的用法示例。
在下文中一共展示了FORA.pythonToFORA方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: generateTestFunctions
# 需要导入模块: from ufora.FORA.python import FORA [as 别名]
# 或者: from ufora.FORA.python.FORA import pythonToFORA [as 别名]
def generateTestFunctions():
testFunctions = []
testPath = os.path.split(FORATestModule.__file__)[0]
foraFiles = [x for x in os.listdir(testPath) if x.endswith(".fora")]
foraModules = []
for filename in foraFiles:
foraModules.append(
FORA.extractImplValContainer(
FORA.importModule(
os.path.join(testPath, filename)
)
)
)
for module in foraModules:
for member in module.objectMembers:
expr = module.getMemberDefinition(member)
testFunctions.append(FORA.pythonToFORA(expr.toFunctionImplval(False)))
return testFunctions