We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c7e1dcf commit a6e8075Copy full SHA for a6e8075
1 file changed
src/symbols/call.py
@@ -40,8 +40,8 @@ def __init__(self, entry: SymbolID, arglist: Iterable[SymbolARGUMENT], lineno: i
40
super().__init__()
41
self.entry = entry
42
self.args = arglist # Func. call / array access
43
- self.lineno = lineno
44
- self.filename = filename
+ self.lineno: int = lineno
+ self.filename: str = filename
45
46
ref = entry.ref
47
if isinstance(ref, FuncRef):
0 commit comments