Lines Matching refs:item
280 def __init__(self, item, typedecl=None, *, unsupported=None, **extra):
282 raise NotImplementedError((item, typedecl, unsupported, extra))
295 if item.kind is KIND.VARIABLE:
296 raise NotImplementedError(item, typedecl, unsupported)
300 super().__init__(item, typedecl, **extra)
341 for item in analysis:
342 if item.kind != KIND.VARIABLE:
344 if item.supported:
346 if item.id in ignored:
348 reason = item.unsupported
355 yield item, f'not supported {reason:20}\t{item.storage or ""} {item.vartype}'