Lines Matching defs:scopes
259 return s.scopes
347 self.scopes = self.parseSymbols(node)
348 self.scope = self.scopes[node]
361 self.scopes = self.parseSymbols(node)
362 self.scope = self.scopes[node]
383 gen = self.FunctionGen(node, self.scopes, isLambda,
395 gen = self.ClassGen(node, self.scopes,
673 gen = GenExprCodeGenerator(node, self.scopes, self.class_name,
1298 scopes = None
1312 scopes = None
1327 scopes = None
1350 def __init__(self, func, scopes, isLambda, class_name, mod):
1411 scopes = None
1415 def __init__(self, func, scopes, isLambda, class_name, mod):
1416 self.scopes = scopes
1417 self.scope = scopes[func]
1418 self.__super_init(func, scopes, isLambda, class_name, mod)
1427 scopes = None
1431 def __init__(self, gexp, scopes, class_name, mod):
1432 self.scopes = scopes
1433 self.scope = scopes[gexp]
1434 self.__super_init(gexp, scopes, 1, class_name, mod)
1441 def __init__(self, klass, scopes, module):
1463 scopes = None
1467 def __init__(self, klass, scopes, module):
1468 self.scopes = scopes
1469 self.scope = scopes[klass]
1470 self.__super_init(klass, scopes, module)