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 e53d19a commit cf020caCopy full SHA for cf020ca
Tools/c-analyzer/c_parser/info.py
@@ -204,7 +204,11 @@ class DeclID(namedtuple('DeclID', 'filename funcname name')):
204
@classmethod
205
def from_row(cls, row, **markers):
206
row = _tables.fix_row(row, **markers)
207
- return cls(*row)
+ try:
208
+ return cls(*row)
209
+ except BaseException as e:
210
+ e.add_note(f"when processing row={row}")
211
+ raise
212
213
# We have to provide _make() because we implemented __new__().
214
0 commit comments