2
2
import os .path
3
3
import sys
4
4
import traceback
5
+ from collections import defaultdict , OrderedDict
5
6
6
- from typing import Tuple , List , TypeVar , Set
7
+ from typing import Tuple , List , TypeVar , Set , Dict , Optional
7
8
8
9
9
10
T = TypeVar ('T' )
@@ -79,8 +80,11 @@ class Errors:
79
80
# Stack of short names of current functions or members (or None).
80
81
function_or_member = None # type: List[str]
81
82
82
- # Ignore errors on these lines.
83
- ignored_lines = None # type: Set[int]
83
+ # Ignore errors on these lines of each file.
84
+ ignored_lines = None # type: Dict[str, Set[int]]
85
+
86
+ # Lines on which an error was actually ignored.
87
+ used_ignored_lines = None # type: Dict[str, Set[int]]
84
88
85
89
# Collection of reported only_once messages.
86
90
only_once_messages = None # type: Set[str]
@@ -90,7 +94,8 @@ def __init__(self) -> None:
90
94
self .import_ctx = []
91
95
self .type_name = [None ]
92
96
self .function_or_member = [None ]
93
- self .ignored_lines = set ()
97
+ self .ignored_lines = OrderedDict ()
98
+ self .used_ignored_lines = defaultdict (set )
94
99
self .only_once_messages = set ()
95
100
96
101
def copy (self ) -> 'Errors' :
@@ -109,13 +114,14 @@ def set_ignore_prefix(self, prefix: str) -> None:
109
114
prefix += os .sep
110
115
self .ignore_prefix = prefix
111
116
112
- def set_file (self , file : str ) -> None :
117
+ def set_file (self , file : str , ignored_lines : Set [ int ] = None ) -> None :
113
118
"""Set the path of the current file."""
114
119
file = os .path .normpath (file )
115
120
self .file = remove_path_prefix (file , self .ignore_prefix )
116
-
117
- def set_ignored_lines (self , ignored_lines : Set [int ]) -> None :
118
- self .ignored_lines = ignored_lines
121
+ if ignored_lines is not None :
122
+ if self .file in self .ignored_lines :
123
+ assert self .ignored_lines [self .file ] == ignored_lines
124
+ self .ignored_lines [self .file ] = ignored_lines
119
125
120
126
def push_function (self , name : str ) -> None :
121
127
"""Set the current function or member short name (it can be None)."""
@@ -170,15 +176,26 @@ def report(self, line: int, message: str, blocker: bool = False,
170
176
self .add_error_info (info )
171
177
172
178
def add_error_info (self , info : ErrorInfo ) -> None :
173
- if info .line in self .ignored_lines :
179
+ assert self .file == info .file
180
+ if self .file in self .ignored_lines and info .line in self .ignored_lines [self .file ]:
174
181
# Annotation requests us to ignore all errors on this line.
182
+ self .used_ignored_lines [self .file ].add (info .line )
175
183
return
176
184
if info .only_once :
177
185
if info .message in self .only_once_messages :
178
186
return
179
187
self .only_once_messages .add (info .message )
180
188
self .error_info .append (info )
181
189
190
+ def generate_unused_ignore_notes (self ) -> None :
191
+ for file , ignored_lines in self .ignored_lines .items ():
192
+ for line in ignored_lines - self .used_ignored_lines [file ]:
193
+ # Don't use report since add_error_info will ignore the error!
194
+ info = ErrorInfo (self .import_context (), file , None , None ,
195
+ line , 'note' , "unused 'type: ignore' comment" ,
196
+ False , False )
197
+ self .error_info .append (info )
198
+
182
199
def num_messages (self ) -> int :
183
200
"""Return the number of generated messages."""
184
201
return len (self .error_info )
0 commit comments