43 overrides of IsExtern
Microsoft.CodeAnalysis.CSharp (40)
Lowering\IteratorRewriter\IteratorFinallyMethodSymbol.cs (1)
239public override bool IsExtern
Lowering\StateMachineRewriter\SynthesizedStateMachineProperty.cs (1)
149public override bool IsExtern
Symbols\AliasSymbol.cs (1)
136public sealed override bool IsExtern
Symbols\AnonymousTypes\SynthesizedSymbols\AnonymousType.PropertySymbol.cs (1)
189public override bool IsExtern
Symbols\AnonymousTypes\SynthesizedSymbols\AnonymousType.SynthesizedMethodBase.cs (1)
153public sealed override bool IsExtern
Symbols\AssemblySymbol.cs (1)
271public sealed override bool IsExtern
Symbols\DiscardSymbol.cs (1)
25public override bool IsExtern => false;
Symbols\ErrorMethodSymbol.cs (1)
44public override bool IsExtern
Symbols\ErrorPropertySymbol.cs (1)
78public override bool IsExtern { get { return false; } }
Symbols\FieldSymbol.cs (1)
223public sealed override bool IsExtern
Symbols\FunctionPointers\FunctionPointerMethodSymbol.cs (1)
818public override bool IsExtern => false;
Symbols\LabelSymbol.cs (1)
21public override bool IsExtern
Symbols\LocalSymbol.cs (1)
103public sealed override bool IsExtern
Symbols\Metadata\PE\PEEventSymbol.cs (1)
275public override bool IsExtern
Symbols\Metadata\PE\PEMethodSymbol.cs (1)
493public override bool IsExtern => HasFlag(MethodAttributes.PinvokeImpl);
Symbols\Metadata\PE\PEPropertySymbol.cs (1)
450public override bool IsExtern
Symbols\ModuleSymbol.cs (1)
180public sealed override bool IsExtern
Symbols\NamespaceOrTypeSymbol.cs (1)
95public sealed override bool IsExtern
Symbols\ParameterSymbol.cs (1)
353public override bool IsExtern
Symbols\RangeVariableSymbol.cs (1)
72public override bool IsExtern
Symbols\ReducedExtensionMethodSymbol.cs (1)
373public override bool IsExtern
Symbols\SignatureOnlyMethodSymbol.cs (1)
149public override bool IsExtern { get { throw ExceptionUtilities.Unreachable(); } }
Symbols\SignatureOnlyPropertySymbol.cs (1)
88public override bool IsExtern { get { throw ExceptionUtilities.Unreachable(); } }
Symbols\Source\LambdaSymbol.cs (1)
77public override bool IsExtern
Symbols\Source\LocalFunctionSymbol.cs (1)
335public override bool IsExtern => (_declarationModifiers & DeclarationModifiers.Extern) != 0;
Symbols\Source\SourceEventSymbol.cs (1)
365public sealed override bool IsExtern
Symbols\Source\SourceMemberMethodSymbol.cs (1)
488public override bool IsExtern
Symbols\Source\SourcePropertySymbolBase.cs (1)
470public override bool IsExtern
Symbols\Synthesized\SynthesizedDelegateSymbol.cs (1)
258public override bool IsExtern
Symbols\Synthesized\SynthesizedEntryPointSymbol.cs (1)
156public override bool IsExtern
Symbols\Synthesized\SynthesizedGlobalMethodSymbol.cs (1)
243public override bool IsExtern
Symbols\Synthesized\SynthesizedImplementationMethod.cs (1)
196public override bool IsExtern
Symbols\Synthesized\SynthesizedInstanceConstructor.cs (1)
193public sealed override bool IsExtern
Symbols\Synthesized\SynthesizedInteractiveInitializerMethod.cs (1)
89public override bool IsExtern
Symbols\Synthesized\SynthesizedIntrinsicOperatorSymbol.cs (1)
392public override bool IsExtern
Symbols\Synthesized\SynthesizedSealedPropertyAccessor.cs (1)
278public override bool IsExtern
Symbols\Synthesized\SynthesizedStaticConstructor.cs (1)
197public override bool IsExtern
Symbols\Wrapped\WrappedEventSymbol.cs (1)
134public override bool IsExtern
Symbols\Wrapped\WrappedMethodSymbol.cs (1)
173public override bool IsExtern
Symbols\Wrapped\WrappedPropertySymbol.cs (1)
156public override bool IsExtern
Microsoft.CodeAnalysis.CSharp.ExpressionEvaluator.ExpressionCompiler (3)
Symbols\EEMethodSymbol.cs (1)
445public override bool IsExtern
Symbols\PlaceholderMethodSymbol.cs (1)
95public override bool IsExtern
Symbols\SynthesizedContextMethodSymbol.cs (1)
75public override bool IsExtern
441 references to IsExtern
Microsoft.CodeAnalysis.CSharp (13)
Binder\Binder_Statements.cs (1)
3706if (constructor.MethodKind != MethodKind.Constructor || constructor.IsExtern)
Compiler\MethodCompiler.cs (1)
2276if (method.MethodKind == MethodKind.Constructor && !method.IsExtern)
Emitter\Model\MethodSymbolAdapter.cs (1)
612return this.IsExtern || (object)ContainingType != null && ContainingType.TypeKind == TypeKind.Delegate;
FlowAnalysis\DefiniteAssignment.cs (1)
2419if (refKind != RefKind.None && ((object)method == null || method.IsExtern) && arg.Type is TypeSymbol type)
Lowering\ClosureConversion\SynthesizedClosureMethod.cs (1)
170if (originalMethod.IsExtern)
Symbols\PublicModel\Symbol.cs (1)
244bool ISymbol.IsExtern => UnderlyingSymbol.IsExtern;
Symbols\ReducedExtensionMethodSymbol.cs (1)
375get { return _reducedFrom.IsExtern; }
Symbols\Source\SourceMethodSymbolWithAttributes.cs (3)
767if (!implementationPart.IsExtern || !implementationPart.IsStatic) 1045if (!this.IsAbstract && !this.IsExtern) 1055if (IsExtern
Symbols\Wrapped\WrappedEventSymbol.cs (1)
138return _underlyingEvent.IsExtern;
Symbols\Wrapped\WrappedMethodSymbol.cs (1)
177return UnderlyingMethod.IsExtern;
Symbols\Wrapped\WrappedPropertySymbol.cs (1)
160return _underlyingProperty.IsExtern;
Microsoft.CodeAnalysis.CSharp.Emit.UnitTests (2)
CodeGen\CodeGenLocalFunctionTests.cs (2)
5770Assert.True(localFunction.IsExtern); 5842Assert.True(localFunction.IsExtern);
Microsoft.CodeAnalysis.CSharp.Emit2.UnitTests (2)
Attributes\AttributeTests_WellKnownAttributes.cs (2)
3612Assert.False(ctorA.IsExtern); 3615Assert.False(methodGoo.IsExtern);
Microsoft.CodeAnalysis.CSharp.Semantic.UnitTests (1)
Semantics\TopLevelStatementsTests.cs (1)
6184Assert.True(localFunction.IsExtern);
Microsoft.CodeAnalysis.CSharp.Symbol.UnitTests (419)
Symbols\CompilationCreationTests.cs (1)
2377Assert.False(foo2.IsExtern);
Symbols\DefaultInterfaceImplementationTests.cs (316)
217Assert.False(m1.IsExtern); 2708Assert.False(accessor.IsExtern); 2718Assert.False(p1.IsExtern); 6231Assert.False(accessor.IsExtern); 6241Assert.False(e1.IsExtern); 8255Assert.False(m01.IsExtern); 8267Assert.False(m02.IsExtern); 8279Assert.False(m03.IsExtern); 8291Assert.False(m04.IsExtern); 8303Assert.False(m05.IsExtern); 8315Assert.False(m06.IsExtern); 8327Assert.False(m07.IsExtern); 8339Assert.False(m08.IsExtern); 8351Assert.False(m09.IsExtern); 8363Assert.False(m10.IsExtern); 8375Assert.True(m11.IsExtern); 8387Assert.False(m12.IsExtern); 8399Assert.False(m13.IsExtern); 8608Assert.False(m1.IsExtern); 8647Assert.False(m1.IsExtern); 8710Assert.False(m1.IsExtern); 8795Assert.False(m1.IsExtern); 8808Assert.False(m2.IsExtern); 8821Assert.False(m3.IsExtern); 8877Assert.False(m1.IsExtern); 8935Assert.False(m1.IsExtern); 8948Assert.False(m2.IsExtern); 8961Assert.False(m3.IsExtern); 9186Assert.False(m1.IsExtern); 9914Assert.False(m1.IsExtern); 9964Assert.False(m1.IsExtern); 10045Assert.False(m1.IsExtern); 10059Assert.False(m2.IsExtern); 10073Assert.False(m3.IsExtern); 10087Assert.False(m4.IsExtern); 10153Assert.False(m2.IsExtern); 10207Assert.Equal(isSource, m1.IsExtern); 10221Assert.Equal(isSource, m2.IsExtern); 10235Assert.Equal(isSource, m3.IsExtern); 10249Assert.Equal(isSource, m4.IsExtern); 10263Assert.Equal(isSource, m5.IsExtern); 10433Assert.True(m1.IsExtern); 10447Assert.True(m2.IsExtern); 10553Assert.False(m1.IsExtern); 10567Assert.False(m2.IsExtern); 10581Assert.False(m3.IsExtern); 10595Assert.True(m4.IsExtern); 10609Assert.False(m5.IsExtern); 10661Assert.False(m1.IsExtern); 10724Assert.False(m1.IsExtern); 10888Assert.False(m1.IsExtern); 10902Assert.False(m2.IsExtern); 10919Assert.False(m2Impl.IsExtern); 10995Assert.False(m1.IsExtern); 11009Assert.False(m2.IsExtern); 11026Assert.False(m2Impl.IsExtern); 11625Assert.False(m1.IsExtern); 12481Assert.False(m1.IsExtern); 12569Assert.False(m1.IsExtern); 12657Assert.False(m1.IsExtern); 12938Assert.False(p01.IsExtern); 12951Assert.False(accessor.IsExtern); 12964Assert.False(p02.IsExtern); 12973Assert.False(p02get.IsExtern); 12985Assert.False(p03.IsExtern); 12994Assert.False(p03set.IsExtern); 13006Assert.False(p04.IsExtern); 13015Assert.False(p04get.IsExtern); 13027Assert.False(p05.IsExtern); 13036Assert.False(p05set.IsExtern); 13048Assert.False(p06.IsExtern); 13057Assert.False(p06get.IsExtern); 13069Assert.False(p07.IsExtern); 13078Assert.False(p07set.IsExtern); 13090Assert.False(p08.IsExtern); 13099Assert.False(p08get.IsExtern); 13111Assert.False(p09.IsExtern); 13120Assert.False(p09set.IsExtern); 13132Assert.False(p10.IsExtern); 13141Assert.False(p10get.IsExtern); 13152Assert.True(p11.IsExtern); 13165Assert.True(accessor.IsExtern); 13177Assert.False(p12.IsExtern); 13190Assert.False(accessor.IsExtern); 13202Assert.False(p13.IsExtern); 13215Assert.False(accessor.IsExtern); 13227Assert.False(p14.IsExtern); 13240Assert.False(accessor.IsExtern); 13252Assert.False(p15.IsExtern); 13265Assert.False(accessor.IsExtern); 13277Assert.False(p16.IsExtern); 13290Assert.False(accessor.IsExtern); 13303Assert.False(p17.IsExtern); 13312Assert.False(p17get.IsExtern); 13324Assert.False(p18.IsExtern); 13333Assert.False(p18get.IsExtern); 13344Assert.False(p19.IsExtern); 13738Assert.False(p1.IsExtern); 13747Assert.False(p1get.IsExtern); 13830Assert.False(p1.IsExtern); 13845Assert.False(accessor.IsExtern); 13904Assert.False(p1.IsExtern); 13918Assert.False(accessor.IsExtern); 14106Assert.False(p1.IsExtern); 14137Assert.False(accessor.IsExtern); 14217Assert.False(p1.IsExtern); 14227Assert.False(p1get.IsExtern); 14240Assert.False(p2.IsExtern); 14250Assert.False(p2set.IsExtern); 14263Assert.False(p3.IsExtern); 14273Assert.False(p3get.IsExtern); 14455Assert.False(p1.IsExtern); 14486Assert.False(accessor.IsExtern); 14559Assert.False(p1.IsExtern); 14569Assert.False(p1get.IsExtern); 14582Assert.False(p2.IsExtern); 14592Assert.False(p2get.IsExtern); 14604Assert.False(p3.IsExtern); 14618Assert.False(accessor.IsExtern); 14632Assert.False(p4.IsExtern); 14642Assert.False(p4get.IsExtern); 14833Assert.False(p1.IsExtern); 14845Assert.False(m1.IsExtern); 16007Assert.False(p1.IsExtern); 16038Assert.False(accessor.IsExtern); 16137Assert.False(p1.IsExtern); 16148Assert.False(p1get.IsExtern); 16163Assert.False(p2.IsExtern); 16174Assert.False(p2get.IsExtern); 16189Assert.False(p3.IsExtern); 16200Assert.False(p3set.IsExtern); 16413Assert.False(p2.IsExtern); 16446Assert.False(accessor.IsExtern); 16603Assert.Equal(isSource, p1.IsExtern); 16614Assert.Equal(isSource, p1get.IsExtern); 16629Assert.Equal(isSource, p2.IsExtern); 16640Assert.Equal(isSource, p2set.IsExtern); 16657Assert.Equal(isSource, p3.IsExtern); 16672Assert.Equal(isSource, accessor.IsExtern); 16688Assert.Equal(isSource, p4.IsExtern); 16699Assert.Equal(isSource, p4get.IsExtern); 16713Assert.Equal(isSource, p5.IsExtern); 16724Assert.Equal(isSource, p5set.IsExtern); 16846Assert.True(p1.IsExtern); 16857Assert.True(p1get.IsExtern); 16872Assert.True(p2.IsExtern); 16883Assert.True(p2get.IsExtern); 16897Assert.True(p3.IsExtern); 16912Assert.True(accessor.IsExtern); 16926Assert.True(p4.IsExtern); 16941Assert.True(accessor.IsExtern); 16956Assert.True(p5.IsExtern); 16967Assert.True(p5get.IsExtern); 17095Assert.False(p1.IsExtern); 17110Assert.False(accessor.IsExtern); 17126Assert.False(p2.IsExtern); 17137Assert.False(p2get.IsExtern); 17151Assert.True(p3.IsExtern); 17166Assert.True(accessor.IsExtern); 17181Assert.False(p4.IsExtern); 17196Assert.False(accessor.IsExtern); 17211Assert.False(p5.IsExtern); 17222Assert.False(p5get.IsExtern); 17307Assert.False(p1.IsExtern); 17319Assert.False(m1.IsExtern); 17574Assert.False(p1.IsExtern); 17603Assert.False(accessor.IsExtern); 18162Assert.False(p1.IsExtern); 18200Assert.False(m1.IsExtern); 19688Assert.False(p1.IsExtern); 19700Assert.False(m1.IsExtern); 20342Assert.False(p1.IsExtern); 20358Assert.False(accessor.IsExtern); 21415Assert.False(p01.IsExtern); 21428Assert.False(accessor.IsExtern); 21441Assert.False(p02.IsExtern); 21450Assert.False(p02get.IsExtern); 21462Assert.False(p03.IsExtern); 21471Assert.False(p03set.IsExtern); 21483Assert.False(p04.IsExtern); 21492Assert.False(p04get.IsExtern); 21504Assert.False(p05.IsExtern); 21513Assert.False(p05set.IsExtern); 21525Assert.False(p06.IsExtern); 21534Assert.False(p06get.IsExtern); 21546Assert.False(p07.IsExtern); 21555Assert.False(p07set.IsExtern); 21567Assert.False(p08.IsExtern); 21576Assert.False(p08get.IsExtern); 21588Assert.False(p09.IsExtern); 21597Assert.False(p09set.IsExtern); 21609Assert.False(p10.IsExtern); 21618Assert.False(p10get.IsExtern); 21629Assert.True(p11.IsExtern); 21642Assert.True(accessor.IsExtern); 21654Assert.False(p12.IsExtern); 21667Assert.False(accessor.IsExtern); 21679Assert.False(p13.IsExtern); 21692Assert.False(accessor.IsExtern); 21704Assert.False(p14.IsExtern); 21717Assert.False(accessor.IsExtern); 21729Assert.False(p15.IsExtern); 21742Assert.False(accessor.IsExtern); 21754Assert.False(p16.IsExtern); 21767Assert.False(accessor.IsExtern); 21780Assert.False(p17.IsExtern); 21789Assert.False(p17get.IsExtern); 21801Assert.False(p18.IsExtern); 21810Assert.False(p18get.IsExtern); 21821Assert.False(p19.IsExtern); 26660Assert.False(p01.IsExtern); 26673Assert.False(accessor.IsExtern); 26686Assert.False(p02.IsExtern); 26695Assert.False(p02get.IsExtern); 26707Assert.False(p03.IsExtern); 26716Assert.False(p03set.IsExtern); 26728Assert.False(p04.IsExtern); 26737Assert.False(p04get.IsExtern); 26749Assert.False(p05.IsExtern); 26758Assert.False(p05set.IsExtern); 26770Assert.False(p06.IsExtern); 26779Assert.False(p06get.IsExtern); 26791Assert.False(p07.IsExtern); 26800Assert.False(p07set.IsExtern); 26812Assert.False(p08.IsExtern); 26821Assert.False(p08get.IsExtern); 26833Assert.False(p09.IsExtern); 26842Assert.False(p09set.IsExtern); 26854Assert.False(p10.IsExtern); 26863Assert.False(p10get.IsExtern); 26876Assert.True(p11.IsExtern); 26889Assert.True(accessor.IsExtern); 26902Assert.False(p14.IsExtern); 26915Assert.False(accessor.IsExtern); 27458Assert.False(p1.IsExtern); 27473Assert.False(accessor.IsExtern); 27532Assert.False(p1.IsExtern); 27546Assert.False(accessor.IsExtern); 27632Assert.False(p1.IsExtern); 27647Assert.False(accessor.IsExtern); 27800Assert.False(p1.IsExtern); 27814Assert.False(accessor.IsExtern); 27827Assert.False(p2.IsExtern); 27841Assert.False(accessor.IsExtern); 27854Assert.False(p3.IsExtern); 27868Assert.False(accessor.IsExtern); 27961Assert.False(p1.IsExtern); 27976Assert.False(accessor.IsExtern); 28057Assert.False(p1.IsExtern); 28071Assert.False(accessor.IsExtern); 28084Assert.False(p2.IsExtern); 28098Assert.False(accessor.IsExtern); 28111Assert.False(p3.IsExtern); 28125Assert.False(accessor.IsExtern); 28138Assert.False(p4.IsExtern); 28152Assert.False(accessor.IsExtern); 28275Assert.False(p1.IsExtern); 28287Assert.False(m1.IsExtern); 29410Assert.False(p1.IsExtern); 29425Assert.False(accessor.IsExtern); 29525Assert.False(p1.IsExtern); 29540Assert.False(accessor.IsExtern); 29555Assert.False(p2.IsExtern); 29570Assert.False(accessor.IsExtern); 29585Assert.False(p3.IsExtern); 29600Assert.False(accessor.IsExtern); 29826Assert.False(p2.IsExtern); 29859Assert.False(accessor.IsExtern); 29938Assert.Equal(isSource, p1.IsExtern); 29953Assert.Equal(isSource, accessor.IsExtern); 29968Assert.Equal(isSource, p2.IsExtern); 29983Assert.Equal(isSource, accessor.IsExtern); 29998Assert.Equal(isSource, p3.IsExtern); 30013Assert.Equal(isSource, accessor.IsExtern); 30027Assert.Equal(isSource, p4.IsExtern); 30042Assert.Equal(isSource, accessor.IsExtern); 30056Assert.Equal(isSource, p5.IsExtern); 30071Assert.Equal(isSource, accessor.IsExtern); 30268Assert.True(p1.IsExtern); 30283Assert.True(accessor.IsExtern); 30298Assert.True(p2.IsExtern); 30313Assert.True(accessor.IsExtern); 30328Assert.True(p3.IsExtern); 30343Assert.True(accessor.IsExtern); 30357Assert.True(p4.IsExtern); 30372Assert.True(accessor.IsExtern); 30489Assert.False(p1.IsExtern); 30504Assert.False(accessor.IsExtern); 30519Assert.False(p2.IsExtern); 30534Assert.False(accessor.IsExtern); 30549Assert.True(p3.IsExtern); 30564Assert.True(accessor.IsExtern); 30579Assert.False(p4.IsExtern); 30594Assert.False(accessor.IsExtern); 30608Assert.False(p5.IsExtern); 30623Assert.False(accessor.IsExtern); 30712Assert.False(p1.IsExtern); 30724Assert.False(m1.IsExtern); 31051Assert.False(p1.IsExtern); 31066Assert.False(accessor.IsExtern); 32884Assert.False(m1.IsExtern); 33721Assert.NotEqual(m1.OriginalDefinition is PEMethodSymbol, m1.IsExtern); 33837Assert.False(m1.IsExtern); 36940Assert.False(m1.IsExtern); 37832Assert.NotEqual(m1.OriginalDefinition is PEPropertySymbol, m1.IsExtern); 39973Assert.False(m1.IsExtern); 44481Assert.False(cctor.IsExtern); 44579Assert.True(cctor.IsExtern); 50934Assert.False(m.IsExtern); 51857Assert.True(i2m1.IsExtern); 51980Assert.False(i2m1.IsExtern); 52376Assert.False(reabstracting.IsExtern); 53558Assert.True(i2p1.IsExtern); 53573Assert.True(i2p1Get.IsExtern); 53590Assert.True(i2p1Set.IsExtern); 57340Assert.False(reabstracting.IsExtern);
Symbols\ExtendedPartialMethodsTests.cs (2)
1159Assert.True(method.IsExtern); 1163Assert.True(implementation.IsExtern);
Symbols\Metadata\PE\LoadingEvents.cs (2)
114Assert.Equal(@event.IsExtern, @accessor.IsExtern);
Symbols\Metadata\PE\LoadingIndexers.cs (2)
1091Assert.Equal(property.IsExtern, @accessor.IsExtern);
Symbols\Metadata\PE\LoadingMethods.cs (2)
165Assert.False(basicC1_M12.IsExtern); 169Assert.True(loadLibrary.IsExtern);
Symbols\Source\ModifierTests.cs (2)
70Assert.True(m7.IsExtern); 126Assert.True(m7.IsExtern);
Symbols\StaticAbstractMembersInInterfacesTests.cs (92)
157Assert.False(m01.IsExtern); 169Assert.False(m02.IsExtern); 181Assert.False(m03.IsExtern); 193Assert.False(m04.IsExtern); 205Assert.False(m05.IsExtern); 217Assert.False(m06.IsExtern); 229Assert.False(m07.IsExtern); 241Assert.False(m08.IsExtern); 253Assert.False(m09.IsExtern); 265Assert.False(m10.IsExtern); 868Assert.False(m01.IsExtern); 996Assert.False(m01.IsExtern); 1026Assert.False(m01.IsExtern); 1068Assert.False(m01.IsExtern); 1083Assert.False(m01.IsExtern); 1161Assert.False(m01.IsExtern); 1198Assert.False(m01.IsExtern); 1235Assert.False(m01.IsExtern); 1282Assert.False(m01.IsExtern); 1297Assert.False(m01.IsExtern); 1333Assert.False(m01.IsExtern); 1348Assert.False(m01.IsExtern); 1388Assert.False(m01.IsExtern); 1403Assert.False(m01.IsExtern); 1446Assert.False(m01.IsExtern); 1461Assert.False(m01.IsExtern); 1501Assert.False(m01.IsExtern); 1516Assert.False(m01.IsExtern); 1559Assert.False(m01.IsExtern); 1574Assert.False(m01.IsExtern); 1740Assert.False(m01.IsExtern); 1750Assert.False(m02.IsExtern); 1760Assert.False(m03.IsExtern); 1770Assert.False(m04.IsExtern); 1780Assert.False(m05.IsExtern); 1790Assert.False(m06.IsExtern); 1800Assert.False(m07.IsExtern); 1810Assert.False(m08.IsExtern); 1820Assert.False(m09.IsExtern); 1830Assert.False(m10.IsExtern); 1842Assert.False(m01.IsExtern); 1854Assert.False(m02.IsExtern); 1866Assert.False(m03.IsExtern); 1878Assert.False(m04.IsExtern); 1890Assert.False(m05.IsExtern); 1902Assert.False(m06.IsExtern); 1914Assert.False(m07.IsExtern); 1926Assert.False(m08.IsExtern); 1938Assert.False(m09.IsExtern); 1950Assert.False(m10.IsExtern); 2546Assert.False(m01.IsExtern); 2556Assert.False(m02.IsExtern); 2566Assert.False(m03.IsExtern); 2576Assert.False(m04.IsExtern); 2586Assert.False(m05.IsExtern); 2596Assert.False(m06.IsExtern); 2606Assert.False(m07.IsExtern); 2616Assert.False(m08.IsExtern); 2626Assert.False(m09.IsExtern); 2636Assert.False(m10.IsExtern); 2650Assert.False(m01.IsExtern); 2662Assert.False(m02.IsExtern); 2674Assert.False(m03.IsExtern); 2686Assert.False(m04.IsExtern); 2698Assert.False(m05.IsExtern); 2710Assert.False(m06.IsExtern); 2722Assert.False(m07.IsExtern); 2734Assert.False(m08.IsExtern); 2746Assert.False(m09.IsExtern); 2758Assert.False(m10.IsExtern); 3378Assert.False(m01.IsExtern); 3390Assert.False(m02.IsExtern); 3402Assert.False(m03.IsExtern); 3414Assert.False(m04.IsExtern); 3426Assert.False(m05.IsExtern); 3438Assert.False(m06.IsExtern); 3450Assert.False(m07.IsExtern); 3462Assert.False(m08.IsExtern); 3474Assert.False(m09.IsExtern); 3486Assert.False(m10.IsExtern); 4145Assert.False(m01.IsExtern); 4158Assert.False(m01.IsExtern); 4171Assert.False(m01.IsExtern); 4391Assert.False(m01.IsExtern); 4404Assert.False(m01.IsExtern); 4417Assert.False(m01.IsExtern); 4577Assert.False(m01.IsExtern); 4590Assert.False(m01.IsExtern); 4603Assert.False(m01.IsExtern); 4817Assert.False(m01.IsExtern); 4830Assert.False(m01.IsExtern); 4843Assert.False(m01.IsExtern);
Microsoft.CodeAnalysis.CSharp.Test.Utilities (4)
Extensions.cs (2)
587Assert.Equal(propertyOrEvent.IsExtern, accessor.IsExtern);
FunctionPointerUtilities.cs (2)
73Assert.False(symbol.IsExtern); 76Assert.False(symbol.IsExtern);