本文整理汇总了Python中oodle.G.G.symTab方法的典型用法代码示例。如果您正苦于以下问题:Python G.symTab方法的具体用法?Python G.symTab怎么用?Python G.symTab使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类oodle.G.G
的用法示例。
在下文中一共展示了G.symTab方法的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: isVarNameUsed
# 需要导入模块: from oodle.G import G [as 别名]
# 或者: from oodle.G.G import symTab [as 别名]
def isVarNameUsed(self, nm):
'''Check whether var name is already used'''
ret = False
sym = G.symTab().lookup(nm)
if sym != None:
ret = ret or isinstance(sym.decl(), ClassDecl)
#ret = ret or isinstance(sym.decl(), MethodDecl) #FIXME - probably need this
ret = ret or (isinstance(sym.decl(), VarDecl) and sym.scope() == G.symTab().getScope())
return ret
示例2: isMethodNameUsed
# 需要导入模块: from oodle.G import G [as 别名]
# 或者: from oodle.G.G import symTab [as 别名]
def isMethodNameUsed(self, nm):
'''Check whether method name is already used'''
sym = G.symTab().lookup(nm)
return sym != None
示例3: beginScope
# 需要导入模块: from oodle.G import G [as 别名]
# 或者: from oodle.G.G import symTab [as 别名]
def beginScope(self, b=True):
'''shorten the call to add a new scope'''
self.valid_scope = b
G.symTab().beginScope()
示例4: isClassNameUsed
# 需要导入模块: from oodle.G import G [as 别名]
# 或者: from oodle.G.G import symTab [as 别名]
def isClassNameUsed(self, nm):
'''Check whether class name is already used'''
sym = G.symTab().lookup(nm)
return sym != None
示例5: endScope
# 需要导入模块: from oodle.G import G [as 别名]
# 或者: from oodle.G.G import symTab [as 别名]
def endScope(self, b=True):
'''shorten the call to end a new scope'''
if self.valid_scope:
G.symTab().endScope()
self.valid_scope = b