2 overrides of Vectorize
Microsoft.AspNetCore.Routing.Tests (2)
Matching\NonVectorizedILEmitTrieJumpTableTest.cs (1)
8public override bool Vectorize => false;
Matching\VectorizedILEmitTrieJumpTableTest.cs (1)
10public override bool Vectorize => true;
2 references to Vectorize
Microsoft.AspNetCore.Routing.Tests (2)
Matching\ILEmitTrieJumpTableTest.cs (2)
21var table = new ILEmitTrieJumpTable(defaultDestination, exitDestination, entries, Vectorize, fallback); 30var table = new ILEmitTrieJumpTable(0, -1, new[] { ("hi", 1), }, Vectorize, Mock.Of<JumpTable>());