@@ -677,7 +677,7 @@ def __init__(self, element, nestedIn):
677677 self .argumentId = {}
678678
679679 def __repr__ (self ):
680- attrs = ["Id" , "tokenId" , "tokenDefId" , "name" , "type" , "hasVirtualSpecifier" ,
680+ attrs = ["Id" , "tokenId" , "tokenDefId" , "name" , "type" , "hasVirtualSpecifier" ,
681681 "isImplicitlyVirtual" , "access" , "isInlineKeyword" , "isStatic" ,
682682 "isAttributeNoreturn" , "overriddenFunction" , "nestedIn" , "argumentId" ]
683683 return "{}({})" .format (
@@ -901,7 +901,7 @@ def setId(self, IdMap):
901901 self .symbolic = IdMap .get (self ._symbolicId )
902902
903903 def __repr__ (self ):
904- attrs = ["intvalue" , "tokvalue" , "floatvalue" , "movedvalue" , "uninit" ,
904+ attrs = ["intvalue" , "tokvalue" , "floatvalue" , "movedvalue" , "uninit" ,
905905 "bufferSize" , "containerSize" , "condition" , "valueKind" ]
906906 return "{}({})" .format (
907907 "Value" ,
@@ -999,7 +999,7 @@ def isMatch(self, file, line, message, errorId):
999999 return True
10001000 # Other Suppression (Globaly set via suppression file or cli command)
10011001 if ((self .fileName is None or fnmatch (file , self .fileName ))
1002- and (self .suppressionType is None )
1002+ and (self .suppressionType is None )
10031003 and (self .symbolName is None or fnmatch (message , '*' + self .symbolName + '*' ))
10041004 and fnmatch (errorId , self .errorId )):
10051005 return True
0 commit comments