Skip to content
Open
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions tests/cecil-tests/Documentation.KnownFailures.txt
Original file line number Diff line number Diff line change
Expand Up @@ -9735,18 +9735,18 @@ M:CoreFoundation.CFNetwork.ExecuteProxyAutoConfigurationScriptAsync(System.Strin
M:CoreFoundation.CFNetwork.ExecuteProxyAutoConfigurationUrl(System.Uri,System.Uri,Foundation.NSError@)
M:CoreFoundation.CFNetwork.ExecuteProxyAutoConfigurationUrlAsync(System.Uri,System.Uri,System.Threading.CancellationToken)
M:CoreFoundation.CFRange.#ctor(System.IntPtr,System.IntPtr)
M:CoreFoundation.CFReadStream.DoSetClient(.method,System.IntPtr,System.IntPtr)
M:CoreFoundation.CFReadStream.DoSetClient(,System.IntPtr,System.IntPtr)
M:CoreFoundation.CFRunLoop.RunInMode(System.String,System.Double,System.Boolean)
M:CoreFoundation.CFSocket.Invalidate
M:CoreFoundation.CFStream.#ctor(ObjCRuntime.NativeHandle,System.Boolean)
M:CoreFoundation.CFStream.CreateBoundPair(CoreFoundation.CFReadStream@,CoreFoundation.CFWriteStream@,System.IntPtr)
M:CoreFoundation.CFStream.CreateForHTTPRequest(CFNetwork.CFHTTPMessage)
M:CoreFoundation.CFStream.CreateForStreamedHTTPRequest(CFNetwork.CFHTTPMessage,CoreFoundation.CFReadStream)
M:CoreFoundation.CFStream.CreateForStreamedHTTPRequest(CFNetwork.CFHTTPMessage,Foundation.NSInputStream)
M:CoreFoundation.CFStream.DoSetClient(.method,System.IntPtr,System.IntPtr)
M:CoreFoundation.CFStream.DoSetClient(,System.IntPtr,System.IntPtr)
M:CoreFoundation.CFString.op_Implicit(CoreFoundation.CFString)~System.String
M:CoreFoundation.CFString.op_Implicit(System.String)~CoreFoundation.CFString
M:CoreFoundation.CFWriteStream.DoSetClient(.method,System.IntPtr,System.IntPtr)
M:CoreFoundation.CFWriteStream.DoSetClient(,System.IntPtr,System.IntPtr)
M:CoreFoundation.CFWriteStream.Write(System.Byte[],System.IntPtr,System.IntPtr)
M:CoreFoundation.DispatchBlock.op_Explicit(CoreFoundation.DispatchBlock)~System.Action
M:CoreFoundation.DispatchData.CreateMap(System.IntPtr@,System.UIntPtr@)
Expand Down Expand Up @@ -9954,7 +9954,7 @@ M:CoreGraphics.CGPDFObject.TryGetValue(System.IntPtr@)
M:CoreGraphics.CGPDFObject.TryGetValue(System.Runtime.InteropServices.NFloat@)
M:CoreGraphics.CGPDFOperatorTable.Release
M:CoreGraphics.CGPDFOperatorTable.Retain
M:CoreGraphics.CGPDFOperatorTable.SetCallback(System.String,.method)
M:CoreGraphics.CGPDFOperatorTable.SetCallback(System.String,)
M:CoreGraphics.CGPDFPage.Release
M:CoreGraphics.CGPDFPage.Retain
M:CoreGraphics.CGPDFPageInfo.#ctor
Expand Down
3 changes: 3 additions & 0 deletions tests/cecil-tests/Documentation.cs
Original file line number Diff line number Diff line change
Expand Up @@ -324,6 +324,9 @@ static string GetDocId (PropertyDefinition pd)

static string GetDocId (TypeReference tr)
{
if (tr is FunctionPointerType)
return "";
Comment thread
Copilot marked this conversation as resolved.

string name = "";
if (tr.IsNested) {
var decl = tr.DeclaringType;
Expand Down
Loading