231 references to None
Microsoft.CodeAnalysis.CodeStyle.Fixes (1)
src\Workspaces\SharedUtilitiesAndExtensions\Workspace\Core\CodeGeneration\Symbols\CodeGenerationParameterSymbol.cs (1)
67
public ScopedKind ScopedKind => ScopedKind.
None
;
Microsoft.CodeAnalysis.CSharp (48)
Binder\Binder.QueryUnboundLambdaState.cs (1)
50
public override ScopedKind DeclaredScope(int index) => ScopedKind.
None
;
Binder\Binder.ValueChecks.cs (2)
3144
return ScopedKind.
None
;
3149
return ScopedKind.
None
;
Binder\Binder_AnonymousTypes.cs (1)
97
ScopedKind.
None
);
Binder\Binder_Expressions.cs (4)
11186
(parameters.Any(p => p.EffectiveScope != ScopedKind.
None
) ? parameters.SelectAsArray(p => p.EffectiveScope) : default);
11219
(parameterScopes.IsDefault || parameterScopes.All(scope => scope == ScopedKind.
None
)) &&
11253
parameterScopes.IsDefault ? ScopedKind.
None
: parameterScopes[i],
11258
fieldsBuilder.Add(new AnonymousTypeField(name: "", location, returnType, returnRefKind, ScopedKind.
None
));
Binder\Binder_Lambda.cs (1)
226
if (scopesBuilder.Any(s => s != ScopedKind.
None
))
Binder\Binder_Query.cs (1)
818
new AnonymousTypeField(fieldName, fieldValue.Syntax.Location, TypeWithAnnotations.Create(TypeOrError(fieldValue)), RefKind.None, ScopedKind.
None
);
Binder\RefSafetyAnalysis.cs (4)
446
var scopedModifier = _useUpdatedEscapeRules ? local.Scope : ScopedKind.
None
;
447
if (scopedModifier != ScopedKind.
None
)
487
if (_useUpdatedEscapeRules && localSymbol.Scope != ScopedKind.
None
)
630
tryGetReceiverParameter(m)?.EffectiveScope == ScopedKind.
None
)
BoundTree\UnboundLambda.cs (3)
683
if (scope == ScopedKind.
None
)
765
if (((DeclaredScope(i) == ScopedKind.
None
&& parameterScopesBuilder[i] == ScopedKind.ScopedRef) ||
1564
return _parameterDeclaredScopes.IsDefault ? ScopedKind.
None
: _parameterDeclaredScopes[index];
CodeGen\Optimizer.cs (1)
2432
internal override ScopedKind Scope => ScopedKind.
None
;
Compilation\CSharpCompilation.cs (1)
4240
fields.Add(new AnonymousTypeField(name, location, TypeWithAnnotations.Create(type, nullableAnnotation), RefKind.None, ScopedKind.
None
));
Emitter\Model\PEModuleBuilder.cs (1)
1685
Debug.Assert(scope != ScopedKind.
None
);
FlowAnalysis\NullableWalker.PlaceholderLocal.cs (1)
73
internal override ScopedKind Scope => ScopedKind.
None
;
Symbols\AnonymousTypes\AnonymousTypeManager.Templates.cs (2)
323
(ScopedKind.
None
, false) => true,
463
var fields = key.Fields.SelectAsArray(f => new AnonymousTypeField(f.Name, Location.None, typeWithAnnotations: default, refKind: RefKind.None, ScopedKind.
None
));
Symbols\AnonymousTypes\SynthesizedSymbols\AnonymousType.DelegateTemplateSymbol.cs (1)
61
new SynthesizedDelegateInvokeMethod.ParameterDescription(TypeWithAnnotations.Create(typeParams[i]), refKinds.IsNull ? RefKind.None : refKinds[i], ScopedKind.
None
, defaultValue: null, isParams: false, hasUnscopedRefAttribute: false));
Symbols\FunctionPointers\FunctionPointerParameterSymbol.cs (1)
34
=> ParameterHelpers.IsRefScopedByDefault(this) ? ScopedKind.ScopedRef : ScopedKind.
None
;
Symbols\Metadata\PE\PEParameterSymbol.cs (2)
259
ScopedKind scope = ScopedKind.
None
;
327
scope = ScopedKind.
None
;
Symbols\SignatureOnlyParameterSymbol.cs (1)
59
=> ParameterHelpers.IsRefScopedByDefault(this) ? ScopedKind.ScopedRef : ScopedKind.
None
;
Symbols\Source\ParameterHelpers.cs (3)
321
Debug.Assert(parameter is SourceComplexParameterSymbolBase || parameter is not SourceParameterSymbol s || s.DeclaredScope == ScopedKind.
None
); // Only SourceComplexParameterSymbolBase validates 'scope'.
428
if (scope == ScopedKind.
None
)
1113
scope = ScopedKind.
None
;
Symbols\Source\SourceComplexParameterSymbol.cs (3)
212
if (scope != ScopedKind.
None
&&
216
return ScopedKind.
None
;
868
else if (DeclaredScope != ScopedKind.
None
)
Symbols\Source\SourceLocalSymbol.cs (2)
70
? isScoped ? ScopedKind.ScopedRef : ScopedKind.
None
71
: isScoped ? ScopedKind.ScopedValue : ScopedKind.
None
;
Symbols\Source\SourceMemberContainerSymbol_ImplementationChecks.cs (2)
1396
p is { EffectiveScope: ScopedKind.
None
, RefKind: RefKind.Ref } or { EffectiveScope: ScopedKind.ScopedRef, RefKind: RefKind.Out } &&
1498
return allowVariance && baseScope == ScopedKind.
None
;
Symbols\Source\SourceParameterSymbol.cs (2)
83
scope == ScopedKind.
None
)
239
if (declaredScope == ScopedKind.
None
)
Symbols\Source\SourceSimpleParameterSymbol.cs (1)
39
: base(owner, ordinal, refKind, ScopedKind.
None
, name, location)
Symbols\Source\ThisParameterSymbol.cs (3)
185
var scope = _containingType.IsStructType() ? ScopedKind.ScopedRef : ScopedKind.
None
;
186
if (scope != ScopedKind.
None
&&
190
return ScopedKind.
None
;
Symbols\Synthesized\SynthesizedAccessorValueParameterSymbol.cs (1)
28
scope: ScopedKind.
None
)
Symbols\Synthesized\SynthesizedIntrinsicOperatorSymbol.cs (1)
469
) : base(container, TypeWithAnnotations.Create(type), ordinal, RefKind.None, ScopedKind.
None
, name)
Symbols\Synthesized\SynthesizedLocal.cs (1)
188
internal sealed override ScopedKind Scope => ScopedKind.
None
;
Symbols\Synthesized\SynthesizedParameterSymbol.cs (1)
261
ScopedKind scope = ScopedKind.
None
,
Microsoft.CodeAnalysis.CSharp.Emit3.UnitTests (28)
Attributes\AttributeTests_LifetimeAnnotation.cs (1)
268
Assert.Equal(ScopedKind.
None
, parameter.EffectiveScope);
RefStructInterfacesTests.cs (3)
21512
Assert.Equal(ScopedKind.
None
, p.EffectiveScope);
21657
Assert.Equal(ScopedKind.
None
, p.EffectiveScope);
21720
Assert.Equal(ScopedKind.
None
, p.EffectiveScope);
Semantics\ParamsCollectionTests.cs (24)
8680
assertScope(ScopedKind.
None
, p);
8686
symbolValidator: (m) => verifyScopeOnImport(m, ScopedKind.
None
)).VerifyDiagnostics();
8729
assertScope(ScopedKind.
None
, p);
8754
assertScope(ScopedKind.
None
, p);
8781
assertScope(ScopedKind.
None
, p);
8785
symbolValidator: (m) => verifyScopeOnImport(m, ScopedKind.
None
)).VerifyDiagnostics();
8828
assertScope(ScopedKind.
None
, p);
8853
assertScope(ScopedKind.
None
, p);
8965
assertScope(ScopedKind.
None
, p);
8970
symbolValidator: (m) => verifyScopeOnImport(m, ScopedKind.
None
, expectUnscopedRefAttribute: true)).VerifyDiagnostics();
8989
assertScope(ScopedKind.
None
, p);
9026
case ScopedKind.
None
:
9275
Assert.Equal(ScopedKind.
None
, comp.GetMember<MethodSymbol>("C1.Test1").Parameters.Single().EffectiveScope);
9279
Assert.Equal(ScopedKind.
None
, comp.GetMember<MethodSymbol>("C1.Test2").Parameters.Single().EffectiveScope);
9283
Assert.Equal(ScopedKind.
None
, comp.GetMember<MethodSymbol>("C1.Test3").Parameters.Single().EffectiveScope);
9317
Assert.Equal(ScopedKind.
None
, comp.GetMember<MethodSymbol>("C2.Test1").Parameters.Single().EffectiveScope);
9321
Assert.Equal(ScopedKind.
None
, comp.GetMember<MethodSymbol>("C2.Test2").Parameters.Single().EffectiveScope);
9325
Assert.Equal(ScopedKind.
None
, comp.GetMember<MethodSymbol>("C2.Test3").Parameters.Single().EffectiveScope);
10071
Assert.Equal(ScopedKind.
None
, comp.GetMember<MethodSymbol>("C1.Test1").Parameters.Single().EffectiveScope);
10072
Assert.Equal(ScopedKind.
None
, comp.GetMember<MethodSymbol>("C1.Test2").Parameters.Single().EffectiveScope);
10073
Assert.Equal(ScopedKind.
None
, comp.GetMember<MethodSymbol>("C1.Test3").Parameters.Single().EffectiveScope);
10127
Assert.Equal(ScopedKind.
None
, comp.GetMember<MethodSymbol>("C1.Test1").Parameters.Single().EffectiveScope);
10128
Assert.Equal(ScopedKind.
None
, comp.GetMember<MethodSymbol>("C1.Test2").Parameters.Single().EffectiveScope);
10129
Assert.Equal(ScopedKind.
None
, comp.GetMember<MethodSymbol>("C1.Test3").Parameters.Single().EffectiveScope);
Microsoft.CodeAnalysis.CSharp.Semantic.UnitTests (149)
Semantics\LambdaTests.cs (3)
8681
Assert.Equal(ScopedKind.
None
, symbol.Parameters[0].ScopedKind);
8710
Assert.Equal(ScopedKind.
None
, symbol.Parameters[0].ScopedKind);
8737
Assert.Equal(ScopedKind.
None
, symbol.Parameters[0].ScopedKind);
Semantics\RefFieldTests.cs (144)
10981
VerifyParameterSymbol(parameters[0], "R x1", RefKind.None, ScopedKind.
None
);
10985
VerifyParameterSymbol(parameters[0], "ref R x2", RefKind.Ref, ScopedKind.
None
);
10989
VerifyParameterSymbol(parameters[0], "in R x3", RefKind.In, ScopedKind.
None
);
10993
VerifyParameterSymbol(parameters[0], "out R x4", RefKind.Out, useUpdatedEscapeRules ? ScopedKind.ScopedRef : ScopedKind.
None
);
11090
VerifyParameterSymbol(localFunctions[0].Parameters[0], "R x1", RefKind.None, ScopedKind.
None
);
11092
VerifyParameterSymbol(localFunctions[1].Parameters[0], "ref System.Int32 x2", RefKind.Ref, ScopedKind.
None
);
11094
VerifyParameterSymbol(localFunctions[2].Parameters[0], "in System.Int32 x3", RefKind.In, ScopedKind.
None
);
11096
VerifyParameterSymbol(localFunctions[3].Parameters[0], "out System.Int32 x4", RefKind.Out, useUpdatedEscapeRules ? ScopedKind.ScopedRef : ScopedKind.
None
);
11098
VerifyParameterSymbol(localFunctions[4].Parameters[0], "ref R x5", RefKind.Ref, ScopedKind.
None
);
11100
VerifyParameterSymbol(localFunctions[5].Parameters[0], "in R x6", RefKind.In, ScopedKind.
None
);
11102
VerifyParameterSymbol(localFunctions[6].Parameters[0], "out R x7", RefKind.Out, useUpdatedEscapeRules ? ScopedKind.ScopedRef : ScopedKind.
None
);
11163
verifyParameter(delegateTypesAndLambdas[0], 0, "R", "x1", RefKind.None, ScopedKind.
None
, false, false);
11165
verifyParameter(delegateTypesAndLambdas[1], 0, "ref System.Int32", "x2", RefKind.Ref, ScopedKind.
None
, false, false);
11167
verifyParameter(delegateTypesAndLambdas[2], 0, "in System.Int32", "x3", RefKind.In, ScopedKind.
None
, false, false);
11169
verifyParameter(delegateTypesAndLambdas[3], 0, "out System.Int32", "x4", RefKind.Out, useUpdatedEscapeRules ? ScopedKind.ScopedRef : ScopedKind.
None
, false, false);
11171
verifyParameter(delegateTypesAndLambdas[3], 2, "out System.Int32", "z4", RefKind.Out, ScopedKind.
None
, true, useUpdatedEscapeRules);
11172
verifyParameter(delegateTypesAndLambdas[4], 0, "ref R", "x5", RefKind.Ref, ScopedKind.
None
, false, false);
11174
verifyParameter(delegateTypesAndLambdas[5], 0, "in R", "x6", RefKind.In, ScopedKind.
None
, false, false);
11176
verifyParameter(delegateTypesAndLambdas[6], 0, "out R", "x7", RefKind.Out, useUpdatedEscapeRules ? ScopedKind.ScopedRef : ScopedKind.
None
, false, false);
11286
VerifyParameterSymbol(methods[0].Parameters[0], "R", RefKind.None, ScopedKind.
None
);
11287
VerifyParameterSymbol(methods[1].Parameters[0], "ref R", RefKind.Ref, ScopedKind.
None
);
11288
VerifyParameterSymbol(methods[1].Parameters[1], "ref System.Int32", RefKind.Ref, ScopedKind.
None
);
11289
VerifyParameterSymbol(methods[2].Parameters[0], "ref R", RefKind.Ref, ScopedKind.
None
);
11422
VerifyParameterSymbol(comp.GetMember<MethodSymbol>("Program.F0").Parameters[0], "scoped s", RefKind.None, ScopedKind.
None
);
11424
VerifyParameterSymbol(comp.GetMember<MethodSymbol>("Program.F2").Parameters[0], "ref scoped s", RefKind.Ref, ScopedKind.
None
);
11426
VerifyParameterSymbol(comp.GetMember<MethodSymbol>("Program.F5").Parameters[0], "in scoped s", RefKind.In, ScopedKind.
None
);
11458
VerifyParameterSymbol(lambdas[0].Parameters[0], "R r1", RefKind.None, ScopedKind.
None
);
11459
VerifyParameterSymbol(lambdas[1].Parameters[0], "R r2", RefKind.None, ScopedKind.
None
);
11538
VerifyParameterSymbol(parameters[0], "R a", RefKind.None, ScopedKind.
None
);
11539
VerifyParameterSymbol(parameters[1], "ref R b", RefKind.Ref, ScopedKind.
None
);
11540
VerifyParameterSymbol(parameters[2], "in R c", RefKind.In, ScopedKind.
None
);
11616
VerifyParameterSymbol(comp.GetMember<MethodSymbol>("C..ctor").ThisParameter, "C this", RefKind.None, ScopedKind.
None
);
11617
VerifyParameterSymbol(comp.GetMember<MethodSymbol>("C.F1").ThisParameter, "C this", RefKind.None, ScopedKind.
None
);
11669
VerifyParameterSymbol(comp.GetMember<MethodSymbol>("Extensions.F0").Parameters[0], "R<System.Object> r", RefKind.None, ScopedKind.
None
);
11671
VerifyParameterSymbol(comp.GetMember<MethodSymbol>("Extensions.F2").Parameters[0], "scoped", RefKind.None, ScopedKind.
None
);
11990
verifyValueParameter(comp.GetMember<PropertySymbol>("R2.P2"), "R1 value", RefKind.None, ScopedKind.
None
);
11991
verifyValueParameter(comp.GetMember<PropertySymbol>("R2.P3"), "R1 value", RefKind.None, ScopedKind.
None
);
13221
VerifyLocalSymbol(locals[0], "scoped s1", RefKind.None, ScopedKind.
None
);
13222
VerifyLocalSymbol(locals[1], "ref scoped s2", RefKind.Ref, ScopedKind.
None
);
13223
VerifyLocalSymbol(locals[2], "ref scoped s3", RefKind.Ref, ScopedKind.
None
);
13276
VerifyLocalSymbol(locals[0], "scoped s1", RefKind.None, ScopedKind.
None
);
13277
VerifyLocalSymbol(locals[1], "ref scoped s2", RefKind.Ref, ScopedKind.
None
);
13278
VerifyLocalSymbol(locals[2], "ref scoped s3", RefKind.Ref, ScopedKind.
None
);
13335
VerifyLocalSymbol(locals[0], "scoped s1", RefKind.None, ScopedKind.
None
);
13336
VerifyLocalSymbol(locals[2], "scoped s3", RefKind.None, ScopedKind.
None
);
13380
VerifyLocalSymbol(locals[0], "scoped s1", RefKind.None, ScopedKind.
None
);
13381
VerifyLocalSymbol(locals[1], "scoped s3", RefKind.None, ScopedKind.
None
);
13407
VerifyLocalSymbol(locals[0], "System.Boolean scoped", RefKind.None, ScopedKind.
None
);
13432
VerifyLocalSymbol(locals[0], "System.Boolean scoped", RefKind.None, ScopedKind.
None
);
13452
VerifyLocalSymbol(locals[0], "System.Boolean scoped", RefKind.None, ScopedKind.
None
);
13474
VerifyLocalSymbol(locals[0], "System.Boolean scoped", RefKind.None, ScopedKind.
None
);
13785
VerifyLocalSymbol(locals[0], "ref System.Int32 a", RefKind.Ref, ScopedKind.
None
);
13786
VerifyLocalSymbol(locals[1], "ref System.Int32 b", RefKind.Ref, ScopedKind.
None
);
14592
VerifyLocalSymbol(locals[0], "R r11", RefKind.None, ScopedKind.
None
);
14593
VerifyLocalSymbol(locals[1], "R r12", RefKind.None, ScopedKind.
None
);
14597
VerifyLocalSymbol(locals[4], "ref R r31", RefKind.Ref, ScopedKind.
None
);
14598
VerifyLocalSymbol(locals[5], "ref R r32", RefKind.Ref, ScopedKind.
None
);
15121
VerifyLocalSymbol(locals[0], "scoped s1", RefKind.None, ScopedKind.
None
);
15122
VerifyLocalSymbol(locals[1], "ref scoped s2", RefKind.Ref, ScopedKind.
None
);
15123
VerifyLocalSymbol(locals[2], "ref scoped s3", RefKind.Ref, ScopedKind.
None
);
15147
VerifyLocalSymbol(locals[0], "System.Boolean scoped", RefKind.None, ScopedKind.
None
);
15828
VerifyParameterSymbol(method.Parameters[0], "ref System.Int32 i", RefKind.Ref, ScopedKind.
None
);
18016
VerifyParameterSymbol(delegateInvokeMethods[0].Parameters[0], "R arg1", RefKind.None, ScopedKind.
None
);
23448
VerifyParameterSymbol(type.GetMethod("Get").ThisParameter, "ref R2<System.Int32> this", RefKind.Ref, ScopedKind.
None
, expectedHasUnscopedRefAttribute: true);
23449
VerifyParameterSymbol(type.GetMethod("get_Item").ThisParameter, "ref R2<System.Int32> this", RefKind.Ref, ScopedKind.
None
, expectedHasUnscopedRefAttribute: true);
23518
VerifyParameterSymbol(type.GetMethod("Get").ThisParameter, "ref R2<System.Int32> this", RefKind.Ref, ScopedKind.
None
, expectedHasUnscopedRefAttribute: true);
23519
VerifyParameterSymbol(type.GetMethod("get_Item").ThisParameter, "ref R2<System.Int32> this", RefKind.Ref, ScopedKind.
None
, expectedHasUnscopedRefAttribute: true);
23667
VerifyParameterSymbol(parameters[2], "ref R y", RefKind.Ref, ScopedKind.
None
);
23729
VerifyParameterSymbol(baseType.GetMethod("F1A").Parameters[0], "ref R<System.Int32> r1", RefKind.Ref, ScopedKind.
None
);
23818
VerifyParameterSymbol(type.GetMethod("F1").Parameters[0], "ref R<T> r1", RefKind.Ref, ScopedKind.
None
, expectedHasUnscopedRefAttribute: true);
23819
VerifyParameterSymbol(type.GetMethod("F2").Parameters[0], "out T t2", RefKind.Out, ScopedKind.
None
, expectedHasUnscopedRefAttribute: true);
23820
VerifyParameterSymbol(type.GetMethod("F3").Parameters[0], "in R<T> t3", RefKind.In, ScopedKind.
None
, expectedHasUnscopedRefAttribute: true);
23821
VerifyParameterSymbol(type.GetMethod("F4").Parameters[0], "R<T> t4", RefKind.None, ScopedKind.
None
, expectedHasUnscopedRefAttribute: true);
23902
VerifyParameterSymbol(baseType.GetMethod("F4A").Parameters[0], "ref R<System.Int32> r4", RefKind.Ref, ScopedKind.
None
, expectedHasUnscopedRefAttribute: true);
23954
VerifyParameterSymbol(parameters[2], "out System.Int32 y", RefKind.Out, ScopedKind.
None
, expectedHasUnscopedRefAttribute: true);
24014
VerifyParameterSymbol(baseType.GetMethod("F3A").Parameters[0], "out System.Int32 t3", RefKind.Out, ScopedKind.
None
, expectedHasUnscopedRefAttribute: true);
24077
VerifyParameterSymbol(baseType.GetMethod("F1A").Parameters[0], "ref System.Int32 t1", RefKind.Ref, ScopedKind.
None
, expectedHasUnscopedRefAttribute: false);
24079
VerifyParameterSymbol(baseType.GetMethod("F3A").Parameters[0], "ref System.Int32 t3", RefKind.Ref, ScopedKind.
None
, expectedHasUnscopedRefAttribute: true);
24080
VerifyParameterSymbol(baseType.GetMethod("F4A").Parameters[0], "ref System.Int32 t4", RefKind.Ref, ScopedKind.
None
, expectedHasUnscopedRefAttribute: true);
24143
VerifyParameterSymbol(baseType.GetMethod("F1A").Parameters[0], "in System.Int32 t1", RefKind.In, ScopedKind.
None
, expectedHasUnscopedRefAttribute: false);
24145
VerifyParameterSymbol(baseType.GetMethod("F3A").Parameters[0], "in System.Int32 t3", RefKind.In, ScopedKind.
None
, expectedHasUnscopedRefAttribute: true);
24146
VerifyParameterSymbol(baseType.GetMethod("F4A").Parameters[0], "in System.Int32 t4", RefKind.In, ScopedKind.
None
, expectedHasUnscopedRefAttribute: true);
24233
VerifyParameterSymbol(baseType.GetMethod("F1A").Parameters[0], "R<System.Int32> r1", RefKind.None, ScopedKind.
None
, expectedHasUnscopedRefAttribute: false);
24235
VerifyParameterSymbol(baseType.GetMethod("F3A").Parameters[0], "R<System.Int32> r3", RefKind.None, ScopedKind.
None
, expectedHasUnscopedRefAttribute: true);
24236
VerifyParameterSymbol(baseType.GetMethod("F4A").Parameters[0], "R<System.Int32> r4", RefKind.None, ScopedKind.
None
, expectedHasUnscopedRefAttribute: true);
24261
VerifyParameterSymbol(comp.GetMember<MethodSymbol>("Program.F1").Parameters[0], "R<T> r1", RefKind.None, ScopedKind.
None
, expectedHasUnscopedRefAttribute: true);
24262
VerifyParameterSymbol(comp.GetMember<MethodSymbol>("Program.F2").Parameters[0], "ref R<T> r2", RefKind.Ref, ScopedKind.
None
, expectedHasUnscopedRefAttribute: true);
24263
VerifyParameterSymbol(comp.GetMember<MethodSymbol>("Program.F3").Parameters[0], "in R<T> r3", RefKind.In, ScopedKind.
None
, expectedHasUnscopedRefAttribute: true);
24264
VerifyParameterSymbol(comp.GetMember<MethodSymbol>("Program.F4").Parameters[0], "out R<T> r4", RefKind.Out, ScopedKind.
None
, expectedHasUnscopedRefAttribute: true);
24511
VerifyParameterSymbol(lambdas[1].Parameters[0], "out System.Int32 i2", RefKind.Out, ScopedKind.
None
, expectedHasUnscopedRefAttribute: true);
24513
VerifyParameterSymbol(lambdas[3].Parameters[0], "out System.Object o2", RefKind.Out, ScopedKind.
None
, expectedHasUnscopedRefAttribute: true);
24546
VerifyParameterSymbol(lambdas[0].Parameters[0], "ref System.Int32 i1", RefKind.Ref, ScopedKind.
None
, expectedHasUnscopedRefAttribute: false);
24547
VerifyParameterSymbol(lambdas[1].Parameters[0], "ref System.Int32 i2", RefKind.Ref, ScopedKind.
None
, expectedHasUnscopedRefAttribute: true);
24548
VerifyParameterSymbol(lambdas[2].Parameters[0], "ref System.Object o1", RefKind.Ref, ScopedKind.
None
, expectedHasUnscopedRefAttribute: false);
24549
VerifyParameterSymbol(lambdas[3].Parameters[0], "ref System.Object o2", RefKind.Ref, ScopedKind.
None
, expectedHasUnscopedRefAttribute: true);
24584
VerifyParameterSymbol(lambdas[1].Parameters[0], "ref R<System.Int32> r2", RefKind.Ref, ScopedKind.
None
, expectedHasUnscopedRefAttribute: false);
24586
VerifyParameterSymbol(lambdas[3].Parameters[0], "ref R<System.Object> r2", RefKind.Ref, ScopedKind.
None
, expectedHasUnscopedRefAttribute: false);
25009
VerifyParameterSymbol(typeA.GetMethod("UnscopedRefOnly").Parameters[0], "out System.Int32 i", RefKind.Out, ScopedKind.
None
, expectedHasUnscopedRefAttribute: true);
25010
VerifyParameterSymbol(typeA.GetMethod("ScopedRefAndUnscopedRef").Parameters[0], "out System.Int32 i", RefKind.Out, ScopedKind.
None
, expectedHasUnscopedRefAttribute: true);
25109
VerifyParameterSymbol(typeA.GetMethod("NoAttributes").Parameters[0], "ref R x", RefKind.Ref, ScopedKind.
None
, expectedHasUnscopedRefAttribute: false);
25111
VerifyParameterSymbol(typeA.GetMethod("UnscopedRefOnly").Parameters[0], "ref R x", RefKind.Ref, ScopedKind.
None
, expectedHasUnscopedRefAttribute: true);
25112
VerifyParameterSymbol(typeA.GetMethod("ScopedRefAndUnscopedRef").Parameters[0], "ref R x", RefKind.Ref, ScopedKind.
None
, expectedHasUnscopedRefAttribute: true);
25217
VerifyParameterSymbol(typeA.GetMethod("NoAttributes").Parameters[0], "in R x", RefKind.In, ScopedKind.
None
, expectedHasUnscopedRefAttribute: false);
25219
VerifyParameterSymbol(typeA.GetMethod("UnscopedRefOnly").Parameters[0], "in R x", RefKind.In, ScopedKind.
None
, expectedHasUnscopedRefAttribute: true);
25220
VerifyParameterSymbol(typeA.GetMethod("ScopedRefAndUnscopedRef").Parameters[0], "in R x", RefKind.In, ScopedKind.
None
, expectedHasUnscopedRefAttribute: true);
25277
VerifyParameterSymbol(comp.GetMember<MethodSymbol>("A.F3").Parameters[0], "out System.Int32 i3", RefKind.Out, useUpdatedRules ? ScopedKind.ScopedRef : ScopedKind.
None
);
25278
VerifyParameterSymbol(comp.GetMember<MethodSymbol>("A.F4").Parameters[0], "ref R r4", RefKind.Ref, ScopedKind.
None
);
25279
VerifyParameterSymbol(comp.GetMember<MethodSymbol>("A.F5").Parameters[0], "in R r5", RefKind.In, ScopedKind.
None
);
25320
VerifyParameterSymbol(comp.GetMember<MethodSymbol>("A.F3").Parameters[0], "out System.Int32 i3", RefKind.Out, useUpdatedRules ? ScopedKind.ScopedRef : ScopedKind.
None
);
25321
VerifyParameterSymbol(comp.GetMember<MethodSymbol>("A.F4").Parameters[0], "ref R r4", RefKind.Ref, ScopedKind.
None
);
25322
VerifyParameterSymbol(comp.GetMember<MethodSymbol>("A.F5").Parameters[0], "in R r5", RefKind.In, ScopedKind.
None
);
25352
verifyParameter(delegateTypesAndLambdas[0], 0, "out System.Int32", "i1", RefKind.Out, useUpdatedRules ? ScopedKind.ScopedRef : ScopedKind.
None
);
25353
verifyParameter(delegateTypesAndLambdas[1], 0, "R", "r2", RefKind.None, ScopedKind.
None
);
25354
verifyParameter(delegateTypesAndLambdas[2], 0, "ref R", "r3", RefKind.Ref, ScopedKind.
None
);
25355
verifyParameter(delegateTypesAndLambdas[3], 0, "in R", "r4", RefKind.In, ScopedKind.
None
);
25356
verifyParameter(delegateTypesAndLambdas[4], 0, "out R", "r5", RefKind.Out, useUpdatedRules ? ScopedKind.ScopedRef : ScopedKind.
None
);
25402
VerifyParameterSymbol(getFunctionPointerMethod(comp, "A.F1").Parameters[0], "out modreq(System.Runtime.InteropServices.OutAttribute) System.Int32", RefKind.Out, useUpdatedRules ? ScopedKind.ScopedRef : ScopedKind.
None
);
25403
VerifyParameterSymbol(getFunctionPointerMethod(comp, "A.F2").Parameters[0], "R", RefKind.None, ScopedKind.
None
);
25404
VerifyParameterSymbol(getFunctionPointerMethod(comp, "A.F3").Parameters[0], "ref R", RefKind.Ref, ScopedKind.
None
);
25405
VerifyParameterSymbol(getFunctionPointerMethod(comp, "A.F4").Parameters[0], "in modreq(System.Runtime.InteropServices.InAttribute) R", RefKind.In, ScopedKind.
None
);
25406
VerifyParameterSymbol(getFunctionPointerMethod(comp, "A.F5").Parameters[0], "out modreq(System.Runtime.InteropServices.OutAttribute) R", RefKind.Out, useUpdatedRules ? ScopedKind.ScopedRef : ScopedKind.
None
);
25471
var scopedRefInCSharp10 = languageVersion == LanguageVersion.CSharp11 ? ScopedKind.
None
: ScopedKind.ScopedRef;
25474
VerifyParameterSymbol(comp.GetMember<MethodSymbol>("Program.F1").Parameters[0], "out System.Int32 i1", RefKind.Out, ScopedKind.
None
, expectedHasUnscopedRefAttribute: true);
25475
VerifyParameterSymbol(comp.GetMember<MethodSymbol>("Program.F2").Parameters[0], "R r2", RefKind.None, ScopedKind.
None
, expectedHasUnscopedRefAttribute: true);
25476
VerifyParameterSymbol(comp.GetMember<MethodSymbol>("Program.F3").Parameters[0], "ref R r3", RefKind.Ref, ScopedKind.
None
, expectedHasUnscopedRefAttribute: true);
25477
VerifyParameterSymbol(comp.GetMember<MethodSymbol>("Program.F4").Parameters[0], "in R r4", RefKind.In, ScopedKind.
None
, expectedHasUnscopedRefAttribute: true);
25478
VerifyParameterSymbol(comp.GetMember<MethodSymbol>("Program.F5").Parameters[0], "out R r5", RefKind.Out, ScopedKind.
None
, expectedHasUnscopedRefAttribute: true);
26091
VerifyParameterSymbol(typeA.GetMethod("F1").Parameters[0], "ref R x", RefKind.Ref, ScopedKind.
None
, expectedHasUnscopedRefAttribute: false);
26092
VerifyParameterSymbol(typeA.GetMethod("F2").Parameters[0], "ref R x", RefKind.Ref, ScopedKind.
None
, expectedHasUnscopedRefAttribute: true);
26093
VerifyParameterSymbol(typeA.GetMethod("F3").Parameters[0], "in R x", RefKind.In, ScopedKind.
None
, expectedHasUnscopedRefAttribute: false);
26094
VerifyParameterSymbol(typeA.GetMethod("F4").Parameters[0], "in R x", RefKind.In, ScopedKind.
None
, expectedHasUnscopedRefAttribute: true);
27047
VerifyParameterSymbol(method.Parameters[0], "out System.Int32 i", RefKind.Out, version == 11 ? ScopedKind.ScopedRef : ScopedKind.
None
);
27086
VerifyParameterSymbol(method.Parameters[0], "out System.Int32 i", RefKind.Out, ScopedKind.
None
);
27125
VerifyParameterSymbol(method.Parameters[0], "out System.Int32 i", RefKind.Out, ScopedKind.
None
);
27175
VerifyParameterSymbol(method.Parameters[0], "out T t", RefKind.Out, expectedUseUpdatedEscapeRules ? ScopedKind.ScopedRef : ScopedKind.
None
);
27411
Assert.Equal(ScopedKind.
None
, type.DelegateInvokeMethod.Parameters.Single().EffectiveScope);
27463
Assert.Equal(ScopedKind.
None
, type.DelegateInvokeMethod.Parameters.Single().EffectiveScope);
27515
Assert.Equal(ScopedKind.
None
, type.DelegateInvokeMethod.Parameters.Single().EffectiveScope);
27877
VerifyLocalSymbol(locals[0], "scoped s1", RefKind.None, ScopedKind.
None
);
27878
VerifyLocalSymbol(locals[1], "ref scoped s2", RefKind.Ref, ScopedKind.
None
);
27879
VerifyLocalSymbol(locals[2], "ref scoped s3", RefKind.Ref, ScopedKind.
None
);
27978
VerifyLocalSymbol(locals[0], "scoped s1", RefKind.None, ScopedKind.
None
);
27979
VerifyLocalSymbol(locals[1], "ref scoped s2", RefKind.Ref, ScopedKind.
None
);
27980
VerifyLocalSymbol(locals[2], "ref scoped s3", RefKind.Ref, ScopedKind.
None
);
Semantics\SimpleLambdaParametersWithModifiersTests.cs (2)
292
Assert.Equal(ScopedKind.
None
, symbol.Parameters.First().ScopedKind);
1160
Assert.Equal(ScopedKind.
None
, symbol.Parameters.Single().ScopedKind);
Microsoft.CodeAnalysis.VisualBasic (2)
Symbols\ParameterSymbol.vb (1)
314
Return ScopedKind.
None
Symbols\Source\LocalSymbol.vb (1)
306
Return ScopedKind.
None
Microsoft.CodeAnalysis.Workspaces (1)
src\Workspaces\SharedUtilitiesAndExtensions\Workspace\Core\CodeGeneration\Symbols\CodeGenerationParameterSymbol.cs (1)
67
public ScopedKind ScopedKind => ScopedKind.
None
;
Microsoft.Interop.SourceGeneration (2)
Marshalling\MarshallerHelpers.cs (1)
390
if (typeInfo.ScopedKind != ScopedKind.
None
&& typeInfo.RefKind != RefKind.Out)
TypePositionInfo.cs (1)
69
public ScopedKind ScopedKind { get; init; } = ScopedKind.
None
;