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 1ce3bde commit 672aae0Copy full SHA for 672aae0
src/Http/Routing/src/Matching/JumpTableBuilder.cs
@@ -88,6 +88,7 @@ public static JumpTable Build(int defaultDestination, int exitDestination, (stri
88
// Use the ILEmitTrieJumpTable if the IL is going to be compiled (not interpreted)
89
return MakeILEmitTrieJumpTableIfSupported(defaultDestination, exitDestination, pathEntries, fallback);
90
91
+ [UnconditionalSuppressMessage("AOT", "IL3050:RequiresDynamicCode", Justification = "Guarded by RuntimeFeature.IsDynamicCodeSupported")]
92
static JumpTable MakeILEmitTrieJumpTableIfSupported(int defaultDestination, int exitDestination, (string text, int destination)[] pathEntries, JumpTable fallback)
93
{
94
// ILEmitTrieJumpTable use IL emit to generate a custom, high-performance jump table.
0 commit comments