5 references to CreateNativeIntegerTypeSymbol
Microsoft.CodeAnalysis.CSharp.Semantic.UnitTests (3)
Semantics\NativeIntegerTests.cs (3)
1621
var type = comp.
CreateNativeIntegerTypeSymbol
(signed);
1662
VerifyErrorType(((Compilation)comp).
CreateNativeIntegerTypeSymbol
(signed: true), SpecialType.System_IntPtr, isNativeInt: true);
1663
VerifyErrorType(((Compilation)comp).
CreateNativeIntegerTypeSymbol
(signed: false), SpecialType.System_UIntPtr, isNativeInt: true);
Microsoft.CodeAnalysis.VisualBasic.Semantic.UnitTests (2)
Semantics\NativeIntegerTests.vb (2)
70
Assert.Throws(Of NotSupportedException)(Function() comp.
CreateNativeIntegerTypeSymbol
(signed:=True))
71
Assert.Throws(Of NotSupportedException)(Function() comp.
CreateNativeIntegerTypeSymbol
(signed:=False))