15 references to IsRuntimeImplemented
Microsoft.CodeAnalysis.VisualBasic (1)
Symbols\MethodSymbol.vb (1)
427''' <see cref="IsRuntimeImplemented"/> implies <see cref="IsExternalMethod"/>.
Microsoft.CodeAnalysis.VisualBasic.Emit.UnitTests (5)
CodeGen\CodeGenDelegateCreation.vb (5)
75Assert.True(CType(ctor, PEMethodSymbol).IsRuntimeImplemented) 96Assert.True(CType(invoke, PEMethodSymbol).IsRuntimeImplemented) 127Assert.True(CType(beginInvoke, PEMethodSymbol).IsRuntimeImplemented) 149Assert.True(CType(endInvoke, PEMethodSymbol).IsRuntimeImplemented) 205Assert.True(CType(invoke, PEMethodSymbol).IsRuntimeImplemented)
Microsoft.CodeAnalysis.VisualBasic.Symbol.UnitTests (9)
SymbolsTests\Metadata\PE\LoadingMethods.vb (2)
56Assert.False(M1.IsRuntimeImplemented()) ' test false case for PEMethodSymbols, true is covered in delegate tests 61Assert.False(M2.IsRuntimeImplemented())
SymbolsTests\Source\DelegateTests.vb (6)
76Assert.True(delegateCtor.IsRuntimeImplemented()) 89Assert.True(delegateInvoke.IsRuntimeImplemented()) 108Assert.True(delegateBeginInvoke.IsRuntimeImplemented()) 121Assert.True(delegateEndInvoke.IsRuntimeImplemented()) 163Assert.True(delegateInvoke.IsRuntimeImplemented()) 174Assert.True(delegateInvoke.IsRuntimeImplemented())
SymbolsTests\Source\MethodTests.vb (1)
98Assert.False(m1.IsRuntimeImplemented()) ' test for default implementation