Home | History | Annotate | Download | only in compiler

Lines Matching refs:sc

151             sc = self.check_name(name)
153 if sc == SC_UNKNOWN or sc == SC_FREE \
156 elif sc == SC_GLOBAL_IMPLICIT:
158 elif isinstance(self, FunctionScope) and sc == SC_LOCAL:
160 elif sc != SC_CELL:
163 if sc == SC_LOCAL:
165 elif sc != SC_CELL:
452 l = [sc for sc in scopes
453 if sc.name == s.get_name()]