We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8e6e418 commit f50cdf5Copy full SHA for f50cdf5
csharp/extractor/Semmle.Extraction.CIL/Entities/CustomAttributeDecoder.cs
@@ -36,6 +36,9 @@ public PrimitiveTypeCode GetUnderlyingEnumType(Type type)
36
return underlying.Value;
37
}
38
39
+ var name = type.GetQualifiedName();
40
+ cx.Cx.Extractor.Logger.Log(Util.Logging.Severity.Info, $"Couldn't get underlying enum type for {name}");
41
+
42
// We can't fall back to Int32, because the type returned here defines how many bytes are read from the
43
// stream and how those bytes are interpreted.
44
throw new NotImplementedException();
0 commit comments