228 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 (49)
Binder\Binder.QueryUnboundLambdaState.cs (1)
50
public override ScopedKind DeclaredScope(int index) => ScopedKind.
None
;
Binder\Binder.ValueChecks.cs (2)
3038
return ScopedKind.
None
;
3043
return ScopedKind.
None
;
Binder\Binder_AnonymousTypes.cs (1)
97
ScopedKind.
None
);
Binder\Binder_Expressions.cs (4)
10804
(parameters.Any(p => p.EffectiveScope != ScopedKind.
None
) ? parameters.SelectAsArray(p => p.EffectiveScope) : default);
10837
(parameterScopes.IsDefault || parameterScopes.All(scope => scope == ScopedKind.
None
)) &&
10871
parameterScopes.IsDefault ? ScopedKind.
None
: parameterScopes[i],
10876
fieldsBuilder.Add(new AnonymousTypeField(name: "", location, returnType, returnRefKind, ScopedKind.
None
));
Binder\Binder_Lambda.cs (2)
171
var scope = ScopedKind.
None
;
215
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 (3)
446
var scopedModifier = _useUpdatedEscapeRules ? local.Scope : ScopedKind.
None
;
447
if (scopedModifier != ScopedKind.
None
)
487
if (_useUpdatedEscapeRules && localSymbol.Scope != ScopedKind.
None
)
BoundTree\UnboundLambda.cs (3)
662
if (scope == ScopedKind.
None
)
744
if (((DeclaredScope(i) == ScopedKind.
None
&& parameterScopesBuilder[i] == ScopedKind.ScopedRef) ||
1542
return _parameterDeclaredScopes.IsDefault ? ScopedKind.
None
: _parameterDeclaredScopes[index];
CodeGen\Optimizer.cs (1)
2433
internal override ScopedKind Scope => ScopedKind.
None
;
Compilation\CSharpCompilation.cs (1)
4191
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)
60
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)
33
=> 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)
57
=> ParameterHelpers.IsRefScopedByDefault(this) ? ScopedKind.ScopedRef : ScopedKind.
None
;
Symbols\Source\LambdaSymbol.cs (2)
369
scope = ScopedKind.
None
;
375
scope = ScopedKind.
None
;
Symbols\Source\ParameterHelpers.cs (3)
194
Debug.Assert(parameter is SourceComplexParameterSymbolBase || parameter is not SourceParameterSymbol s || s.DeclaredScope == ScopedKind.
None
); // Only SourceComplexParameterSymbolBase validates 'scope'.
323
if (scope == ScopedKind.
None
)
980
scope = ScopedKind.
None
;
Symbols\Source\SourceComplexParameterSymbol.cs (3)
212
if (scope != ScopedKind.
None
&&
215
return ScopedKind.
None
;
872
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 (1)
1481
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)
180
var scope = _containingType.IsStructType() ? ScopedKind.ScopedRef : ScopedKind.
None
;
181
if (scope != ScopedKind.
None
&&
184
return ScopedKind.
None
;
Symbols\Synthesized\SynthesizedAccessorValueParameterSymbol.cs (1)
28
scope: ScopedKind.
None
)
Symbols\Synthesized\SynthesizedIntrinsicOperatorSymbol.cs (1)
468
) : 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)
21511
Assert.Equal(ScopedKind.
None
, p.EffectiveScope);
21656
Assert.Equal(ScopedKind.
None
, p.EffectiveScope);
21719
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 (145)
Semantics\RefFieldTests.cs (145)
10919
VerifyParameterSymbol(parameters[0], "R x1", RefKind.None, ScopedKind.
None
);
10923
VerifyParameterSymbol(parameters[0], "ref R x2", RefKind.Ref, ScopedKind.
None
);
10927
VerifyParameterSymbol(parameters[0], "in R x3", RefKind.In, ScopedKind.
None
);
10931
VerifyParameterSymbol(parameters[0], "out R x4", RefKind.Out, useUpdatedEscapeRules ? ScopedKind.ScopedRef : ScopedKind.
None
);
11028
VerifyParameterSymbol(localFunctions[0].Parameters[0], "R x1", RefKind.None, ScopedKind.
None
);
11030
VerifyParameterSymbol(localFunctions[1].Parameters[0], "ref System.Int32 x2", RefKind.Ref, ScopedKind.
None
);
11032
VerifyParameterSymbol(localFunctions[2].Parameters[0], "in System.Int32 x3", RefKind.In, ScopedKind.
None
);
11034
VerifyParameterSymbol(localFunctions[3].Parameters[0], "out System.Int32 x4", RefKind.Out, useUpdatedEscapeRules ? ScopedKind.ScopedRef : ScopedKind.
None
);
11036
VerifyParameterSymbol(localFunctions[4].Parameters[0], "ref R x5", RefKind.Ref, ScopedKind.
None
);
11038
VerifyParameterSymbol(localFunctions[5].Parameters[0], "in R x6", RefKind.In, ScopedKind.
None
);
11040
VerifyParameterSymbol(localFunctions[6].Parameters[0], "out R x7", RefKind.Out, useUpdatedEscapeRules ? ScopedKind.ScopedRef : ScopedKind.
None
);
11101
verifyParameter(delegateTypesAndLambdas[0], 0, "R", "x1", RefKind.None, ScopedKind.
None
, false);
11103
verifyParameter(delegateTypesAndLambdas[1], 0, "ref System.Int32", "x2", RefKind.Ref, ScopedKind.
None
, false);
11105
verifyParameter(delegateTypesAndLambdas[2], 0, "in System.Int32", "x3", RefKind.In, ScopedKind.
None
, false);
11107
verifyParameter(delegateTypesAndLambdas[3], 0, "out System.Int32", "x4", RefKind.Out, useUpdatedEscapeRules ? ScopedKind.ScopedRef : ScopedKind.
None
, false);
11109
verifyParameter(delegateTypesAndLambdas[3], 2, "out System.Int32", "z4", RefKind.Out, ScopedKind.
None
, true);
11110
verifyParameter(delegateTypesAndLambdas[4], 0, "ref R", "x5", RefKind.Ref, ScopedKind.
None
, false);
11112
verifyParameter(delegateTypesAndLambdas[5], 0, "in R", "x6", RefKind.In, ScopedKind.
None
, false);
11114
verifyParameter(delegateTypesAndLambdas[6], 0, "out R", "x7", RefKind.Out, useUpdatedEscapeRules ? ScopedKind.ScopedRef : ScopedKind.
None
, false);
11224
VerifyParameterSymbol(methods[0].Parameters[0], "R", RefKind.None, ScopedKind.
None
);
11225
VerifyParameterSymbol(methods[1].Parameters[0], "ref R", RefKind.Ref, ScopedKind.
None
);
11226
VerifyParameterSymbol(methods[1].Parameters[1], "ref System.Int32", RefKind.Ref, ScopedKind.
None
);
11227
VerifyParameterSymbol(methods[2].Parameters[0], "ref R", RefKind.Ref, ScopedKind.
None
);
11355
VerifyParameterSymbol(comp.GetMember<MethodSymbol>("Program.F0").Parameters[0], "scoped s", RefKind.None, ScopedKind.
None
);
11357
VerifyParameterSymbol(comp.GetMember<MethodSymbol>("Program.F2").Parameters[0], "ref scoped s", RefKind.Ref, ScopedKind.
None
);
11359
VerifyParameterSymbol(comp.GetMember<MethodSymbol>("Program.F5").Parameters[0], "in scoped s", RefKind.In, ScopedKind.
None
);
11391
VerifyParameterSymbol(lambdas[0].Parameters[0], "R r1", RefKind.None, ScopedKind.
None
);
11392
VerifyParameterSymbol(lambdas[1].Parameters[0], "R r2", RefKind.None, ScopedKind.
None
);
11471
VerifyParameterSymbol(parameters[0], "R a", RefKind.None, ScopedKind.
None
);
11472
VerifyParameterSymbol(parameters[1], "ref R b", RefKind.Ref, ScopedKind.
None
);
11473
VerifyParameterSymbol(parameters[2], "in R c", RefKind.In, ScopedKind.
None
);
11549
VerifyParameterSymbol(comp.GetMember<MethodSymbol>("C..ctor").ThisParameter, "C this", RefKind.None, ScopedKind.
None
);
11550
VerifyParameterSymbol(comp.GetMember<MethodSymbol>("C.F1").ThisParameter, "C this", RefKind.None, ScopedKind.
None
);
11602
VerifyParameterSymbol(comp.GetMember<MethodSymbol>("Extensions.F0").Parameters[0], "R<System.Object> r", RefKind.None, ScopedKind.
None
);
11604
VerifyParameterSymbol(comp.GetMember<MethodSymbol>("Extensions.F2").Parameters[0], "scoped", RefKind.None, ScopedKind.
None
);
11923
verifyValueParameter(comp.GetMember<PropertySymbol>("R2.P2"), "R1 value", RefKind.None, ScopedKind.
None
);
11924
verifyValueParameter(comp.GetMember<PropertySymbol>("R2.P3"), "R1 value", RefKind.None, ScopedKind.
None
);
13154
VerifyLocalSymbol(locals[0], "scoped s1", RefKind.None, ScopedKind.
None
);
13155
VerifyLocalSymbol(locals[1], "ref scoped s2", RefKind.Ref, ScopedKind.
None
);
13156
VerifyLocalSymbol(locals[2], "ref scoped s3", RefKind.Ref, ScopedKind.
None
);
13209
VerifyLocalSymbol(locals[0], "scoped s1", RefKind.None, ScopedKind.
None
);
13210
VerifyLocalSymbol(locals[1], "ref scoped s2", RefKind.Ref, ScopedKind.
None
);
13211
VerifyLocalSymbol(locals[2], "ref scoped s3", RefKind.Ref, ScopedKind.
None
);
13268
VerifyLocalSymbol(locals[0], "scoped s1", RefKind.None, ScopedKind.
None
);
13269
VerifyLocalSymbol(locals[2], "scoped s3", RefKind.None, ScopedKind.
None
);
13313
VerifyLocalSymbol(locals[0], "scoped s1", RefKind.None, ScopedKind.
None
);
13314
VerifyLocalSymbol(locals[1], "scoped s3", RefKind.None, ScopedKind.
None
);
13340
VerifyLocalSymbol(locals[0], "System.Boolean scoped", RefKind.None, ScopedKind.
None
);
13365
VerifyLocalSymbol(locals[0], "System.Boolean scoped", RefKind.None, ScopedKind.
None
);
13385
VerifyLocalSymbol(locals[0], "System.Boolean scoped", RefKind.None, ScopedKind.
None
);
13407
VerifyLocalSymbol(locals[0], "System.Boolean scoped", RefKind.None, ScopedKind.
None
);
13718
VerifyLocalSymbol(locals[0], "ref System.Int32 a", RefKind.Ref, ScopedKind.
None
);
13719
VerifyLocalSymbol(locals[1], "ref System.Int32 b", RefKind.Ref, ScopedKind.
None
);
14525
VerifyLocalSymbol(locals[0], "R r11", RefKind.None, ScopedKind.
None
);
14526
VerifyLocalSymbol(locals[1], "R r12", RefKind.None, ScopedKind.
None
);
14530
VerifyLocalSymbol(locals[4], "ref R r31", RefKind.Ref, ScopedKind.
None
);
14531
VerifyLocalSymbol(locals[5], "ref R r32", RefKind.Ref, ScopedKind.
None
);
15054
VerifyLocalSymbol(locals[0], "scoped s1", RefKind.None, ScopedKind.
None
);
15055
VerifyLocalSymbol(locals[1], "ref scoped s2", RefKind.Ref, ScopedKind.
None
);
15056
VerifyLocalSymbol(locals[2], "ref scoped s3", RefKind.Ref, ScopedKind.
None
);
15080
VerifyLocalSymbol(locals[0], "System.Boolean scoped", RefKind.None, ScopedKind.
None
);
15761
VerifyParameterSymbol(method.Parameters[0], "ref System.Int32 i", RefKind.Ref, ScopedKind.
None
);
17949
VerifyParameterSymbol(delegateInvokeMethods[0].Parameters[0], "R arg1", RefKind.None, ScopedKind.
None
);
22841
VerifyParameterSymbol(type.GetMethod("Get").ThisParameter, "ref R2<System.Int32> this", RefKind.Ref, ScopedKind.
None
, expectedHasUnscopedRefAttribute: true);
22842
VerifyParameterSymbol(type.GetMethod("get_Item").ThisParameter, "ref R2<System.Int32> this", RefKind.Ref, ScopedKind.
None
, expectedHasUnscopedRefAttribute: true);
22911
VerifyParameterSymbol(type.GetMethod("Get").ThisParameter, "ref R2<System.Int32> this", RefKind.Ref, ScopedKind.
None
, expectedHasUnscopedRefAttribute: true);
22912
VerifyParameterSymbol(type.GetMethod("get_Item").ThisParameter, "ref R2<System.Int32> this", RefKind.Ref, ScopedKind.
None
, expectedHasUnscopedRefAttribute: true);
23060
VerifyParameterSymbol(parameters[2], "ref R y", RefKind.Ref, ScopedKind.
None
);
23122
VerifyParameterSymbol(baseType.GetMethod("F1A").Parameters[0], "ref R<System.Int32> r1", RefKind.Ref, ScopedKind.
None
);
23211
VerifyParameterSymbol(type.GetMethod("F1").Parameters[0], "ref R<T> r1", RefKind.Ref, ScopedKind.
None
, expectedHasUnscopedRefAttribute: true);
23212
VerifyParameterSymbol(type.GetMethod("F2").Parameters[0], "out T t2", RefKind.Out, ScopedKind.
None
, expectedHasUnscopedRefAttribute: true);
23213
VerifyParameterSymbol(type.GetMethod("F3").Parameters[0], "in R<T> t3", RefKind.In, ScopedKind.
None
, expectedHasUnscopedRefAttribute: true);
23214
VerifyParameterSymbol(type.GetMethod("F4").Parameters[0], "R<T> t4", RefKind.None, ScopedKind.
None
, expectedHasUnscopedRefAttribute: true);
23295
VerifyParameterSymbol(baseType.GetMethod("F4A").Parameters[0], "ref R<System.Int32> r4", RefKind.Ref, ScopedKind.
None
, expectedHasUnscopedRefAttribute: true);
23347
VerifyParameterSymbol(parameters[2], "out System.Int32 y", RefKind.Out, ScopedKind.
None
, expectedHasUnscopedRefAttribute: true);
23407
VerifyParameterSymbol(baseType.GetMethod("F3A").Parameters[0], "out System.Int32 t3", RefKind.Out, ScopedKind.
None
, expectedHasUnscopedRefAttribute: true);
23470
VerifyParameterSymbol(baseType.GetMethod("F1A").Parameters[0], "ref System.Int32 t1", RefKind.Ref, ScopedKind.
None
, expectedHasUnscopedRefAttribute: false);
23472
VerifyParameterSymbol(baseType.GetMethod("F3A").Parameters[0], "ref System.Int32 t3", RefKind.Ref, ScopedKind.
None
, expectedHasUnscopedRefAttribute: true);
23473
VerifyParameterSymbol(baseType.GetMethod("F4A").Parameters[0], "ref System.Int32 t4", RefKind.Ref, ScopedKind.
None
, expectedHasUnscopedRefAttribute: true);
23536
VerifyParameterSymbol(baseType.GetMethod("F1A").Parameters[0], "in System.Int32 t1", RefKind.In, ScopedKind.
None
, expectedHasUnscopedRefAttribute: false);
23538
VerifyParameterSymbol(baseType.GetMethod("F3A").Parameters[0], "in System.Int32 t3", RefKind.In, ScopedKind.
None
, expectedHasUnscopedRefAttribute: true);
23539
VerifyParameterSymbol(baseType.GetMethod("F4A").Parameters[0], "in System.Int32 t4", RefKind.In, ScopedKind.
None
, expectedHasUnscopedRefAttribute: true);
23626
VerifyParameterSymbol(baseType.GetMethod("F1A").Parameters[0], "R<System.Int32> r1", RefKind.None, ScopedKind.
None
, expectedHasUnscopedRefAttribute: false);
23628
VerifyParameterSymbol(baseType.GetMethod("F3A").Parameters[0], "R<System.Int32> r3", RefKind.None, ScopedKind.
None
, expectedHasUnscopedRefAttribute: true);
23629
VerifyParameterSymbol(baseType.GetMethod("F4A").Parameters[0], "R<System.Int32> r4", RefKind.None, ScopedKind.
None
, expectedHasUnscopedRefAttribute: true);
23654
VerifyParameterSymbol(comp.GetMember<MethodSymbol>("Program.F1").Parameters[0], "R<T> r1", RefKind.None, ScopedKind.
None
, expectedHasUnscopedRefAttribute: true);
23655
VerifyParameterSymbol(comp.GetMember<MethodSymbol>("Program.F2").Parameters[0], "ref R<T> r2", RefKind.Ref, ScopedKind.
None
, expectedHasUnscopedRefAttribute: true);
23656
VerifyParameterSymbol(comp.GetMember<MethodSymbol>("Program.F3").Parameters[0], "in R<T> r3", RefKind.In, ScopedKind.
None
, expectedHasUnscopedRefAttribute: true);
23657
VerifyParameterSymbol(comp.GetMember<MethodSymbol>("Program.F4").Parameters[0], "out R<T> r4", RefKind.Out, ScopedKind.
None
, expectedHasUnscopedRefAttribute: true);
23904
VerifyParameterSymbol(lambdas[1].Parameters[0], "out System.Int32 i2", RefKind.Out, ScopedKind.
None
, expectedHasUnscopedRefAttribute: true);
23906
VerifyParameterSymbol(lambdas[3].Parameters[0], "out System.Object o2", RefKind.Out, ScopedKind.
None
, expectedHasUnscopedRefAttribute: true);
23939
VerifyParameterSymbol(lambdas[0].Parameters[0], "ref System.Int32 i1", RefKind.Ref, ScopedKind.
None
, expectedHasUnscopedRefAttribute: false);
23940
VerifyParameterSymbol(lambdas[1].Parameters[0], "ref System.Int32 i2", RefKind.Ref, ScopedKind.
None
, expectedHasUnscopedRefAttribute: true);
23941
VerifyParameterSymbol(lambdas[2].Parameters[0], "ref System.Object o1", RefKind.Ref, ScopedKind.
None
, expectedHasUnscopedRefAttribute: false);
23942
VerifyParameterSymbol(lambdas[3].Parameters[0], "ref System.Object o2", RefKind.Ref, ScopedKind.
None
, expectedHasUnscopedRefAttribute: true);
23977
VerifyParameterSymbol(lambdas[1].Parameters[0], "ref R<System.Int32> r2", RefKind.Ref, ScopedKind.
None
, expectedHasUnscopedRefAttribute: false);
23979
VerifyParameterSymbol(lambdas[3].Parameters[0], "ref R<System.Object> r2", RefKind.Ref, ScopedKind.
None
, expectedHasUnscopedRefAttribute: false);
24402
VerifyParameterSymbol(typeA.GetMethod("UnscopedRefOnly").Parameters[0], "out System.Int32 i", RefKind.Out, ScopedKind.
None
, expectedHasUnscopedRefAttribute: true);
24403
VerifyParameterSymbol(typeA.GetMethod("ScopedRefAndUnscopedRef").Parameters[0], "out System.Int32 i", RefKind.Out, ScopedKind.
None
, expectedHasUnscopedRefAttribute: true);
24502
VerifyParameterSymbol(typeA.GetMethod("NoAttributes").Parameters[0], "ref R x", RefKind.Ref, ScopedKind.
None
, expectedHasUnscopedRefAttribute: false);
24504
VerifyParameterSymbol(typeA.GetMethod("UnscopedRefOnly").Parameters[0], "ref R x", RefKind.Ref, ScopedKind.
None
, expectedHasUnscopedRefAttribute: true);
24505
VerifyParameterSymbol(typeA.GetMethod("ScopedRefAndUnscopedRef").Parameters[0], "ref R x", RefKind.Ref, ScopedKind.
None
, expectedHasUnscopedRefAttribute: true);
24610
VerifyParameterSymbol(typeA.GetMethod("NoAttributes").Parameters[0], "in R x", RefKind.In, ScopedKind.
None
, expectedHasUnscopedRefAttribute: false);
24612
VerifyParameterSymbol(typeA.GetMethod("UnscopedRefOnly").Parameters[0], "in R x", RefKind.In, ScopedKind.
None
, expectedHasUnscopedRefAttribute: true);
24613
VerifyParameterSymbol(typeA.GetMethod("ScopedRefAndUnscopedRef").Parameters[0], "in R x", RefKind.In, ScopedKind.
None
, expectedHasUnscopedRefAttribute: true);
24670
VerifyParameterSymbol(comp.GetMember<MethodSymbol>("A.F3").Parameters[0], "out System.Int32 i3", RefKind.Out, useUpdatedRules ? ScopedKind.ScopedRef : ScopedKind.
None
);
24671
VerifyParameterSymbol(comp.GetMember<MethodSymbol>("A.F4").Parameters[0], "ref R r4", RefKind.Ref, ScopedKind.
None
);
24672
VerifyParameterSymbol(comp.GetMember<MethodSymbol>("A.F5").Parameters[0], "in R r5", RefKind.In, ScopedKind.
None
);
24713
VerifyParameterSymbol(comp.GetMember<MethodSymbol>("A.F3").Parameters[0], "out System.Int32 i3", RefKind.Out, useUpdatedRules ? ScopedKind.ScopedRef : ScopedKind.
None
);
24714
VerifyParameterSymbol(comp.GetMember<MethodSymbol>("A.F4").Parameters[0], "ref R r4", RefKind.Ref, ScopedKind.
None
);
24715
VerifyParameterSymbol(comp.GetMember<MethodSymbol>("A.F5").Parameters[0], "in R r5", RefKind.In, ScopedKind.
None
);
24745
verifyParameter(delegateTypesAndLambdas[0], 0, "out System.Int32", "i1", RefKind.Out, useUpdatedRules ? ScopedKind.ScopedRef : ScopedKind.
None
);
24746
verifyParameter(delegateTypesAndLambdas[1], 0, "R", "r2", RefKind.None, ScopedKind.
None
);
24747
verifyParameter(delegateTypesAndLambdas[2], 0, "ref R", "r3", RefKind.Ref, ScopedKind.
None
);
24748
verifyParameter(delegateTypesAndLambdas[3], 0, "in R", "r4", RefKind.In, ScopedKind.
None
);
24749
verifyParameter(delegateTypesAndLambdas[4], 0, "out R", "r5", RefKind.Out, useUpdatedRules ? ScopedKind.ScopedRef : ScopedKind.
None
);
24795
VerifyParameterSymbol(getFunctionPointerMethod(comp, "A.F1").Parameters[0], "out modreq(System.Runtime.InteropServices.OutAttribute) System.Int32", RefKind.Out, useUpdatedRules ? ScopedKind.ScopedRef : ScopedKind.
None
);
24796
VerifyParameterSymbol(getFunctionPointerMethod(comp, "A.F2").Parameters[0], "R", RefKind.None, ScopedKind.
None
);
24797
VerifyParameterSymbol(getFunctionPointerMethod(comp, "A.F3").Parameters[0], "ref R", RefKind.Ref, ScopedKind.
None
);
24798
VerifyParameterSymbol(getFunctionPointerMethod(comp, "A.F4").Parameters[0], "in modreq(System.Runtime.InteropServices.InAttribute) R", RefKind.In, ScopedKind.
None
);
24799
VerifyParameterSymbol(getFunctionPointerMethod(comp, "A.F5").Parameters[0], "out modreq(System.Runtime.InteropServices.OutAttribute) R", RefKind.Out, useUpdatedRules ? ScopedKind.ScopedRef : ScopedKind.
None
);
24855
VerifyParameterSymbol(comp.GetMember<MethodSymbol>("S.F").ThisParameter, "ref S this", RefKind.Ref, ScopedKind.
None
, expectedHasUnscopedRefAttribute: true);
24856
VerifyParameterSymbol(comp.GetMember<PropertySymbol>("S.P").GetMethod.ThisParameter, "ref S this", RefKind.Ref, ScopedKind.
None
, expectedHasUnscopedRefAttribute: true);
24857
VerifyParameterSymbol(comp.GetMember<MethodSymbol>("Program.F1").Parameters[0], "out System.Int32 i1", RefKind.Out, ScopedKind.
None
, expectedHasUnscopedRefAttribute: true);
24858
VerifyParameterSymbol(comp.GetMember<MethodSymbol>("Program.F2").Parameters[0], "R r2", RefKind.None, ScopedKind.
None
, expectedHasUnscopedRefAttribute: true);
24859
VerifyParameterSymbol(comp.GetMember<MethodSymbol>("Program.F3").Parameters[0], "ref R r3", RefKind.Ref, ScopedKind.
None
, expectedHasUnscopedRefAttribute: true);
24860
VerifyParameterSymbol(comp.GetMember<MethodSymbol>("Program.F4").Parameters[0], "in R r4", RefKind.In, ScopedKind.
None
, expectedHasUnscopedRefAttribute: true);
24861
VerifyParameterSymbol(comp.GetMember<MethodSymbol>("Program.F5").Parameters[0], "out R r5", RefKind.Out, ScopedKind.
None
, expectedHasUnscopedRefAttribute: true);
25474
VerifyParameterSymbol(typeA.GetMethod("F1").Parameters[0], "ref R x", RefKind.Ref, ScopedKind.
None
, expectedHasUnscopedRefAttribute: false);
25475
VerifyParameterSymbol(typeA.GetMethod("F2").Parameters[0], "ref R x", RefKind.Ref, ScopedKind.
None
, expectedHasUnscopedRefAttribute: true);
25476
VerifyParameterSymbol(typeA.GetMethod("F3").Parameters[0], "in R x", RefKind.In, ScopedKind.
None
, expectedHasUnscopedRefAttribute: false);
25477
VerifyParameterSymbol(typeA.GetMethod("F4").Parameters[0], "in R x", RefKind.In, ScopedKind.
None
, expectedHasUnscopedRefAttribute: true);
26430
VerifyParameterSymbol(method.Parameters[0], "out System.Int32 i", RefKind.Out, version == 11 ? ScopedKind.ScopedRef : ScopedKind.
None
);
26469
VerifyParameterSymbol(method.Parameters[0], "out System.Int32 i", RefKind.Out, ScopedKind.
None
);
26508
VerifyParameterSymbol(method.Parameters[0], "out System.Int32 i", RefKind.Out, ScopedKind.
None
);
26558
VerifyParameterSymbol(method.Parameters[0], "out T t", RefKind.Out, expectedUseUpdatedEscapeRules ? ScopedKind.ScopedRef : ScopedKind.
None
);
26794
Assert.Equal(ScopedKind.
None
, type.DelegateInvokeMethod.Parameters.Single().EffectiveScope);
26846
Assert.Equal(ScopedKind.
None
, type.DelegateInvokeMethod.Parameters.Single().EffectiveScope);
26898
Assert.Equal(ScopedKind.
None
, type.DelegateInvokeMethod.Parameters.Single().EffectiveScope);
27260
VerifyLocalSymbol(locals[0], "scoped s1", RefKind.None, ScopedKind.
None
);
27261
VerifyLocalSymbol(locals[1], "ref scoped s2", RefKind.Ref, ScopedKind.
None
);
27262
VerifyLocalSymbol(locals[2], "ref scoped s3", RefKind.Ref, ScopedKind.
None
);
27361
VerifyLocalSymbol(locals[0], "scoped s1", RefKind.None, ScopedKind.
None
);
27362
VerifyLocalSymbol(locals[1], "ref scoped s2", RefKind.Ref, ScopedKind.
None
);
27363
VerifyLocalSymbol(locals[2], "ref scoped s3", RefKind.Ref, ScopedKind.
None
);
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)
417
if (typeInfo.ScopedKind != ScopedKind.
None
&& typeInfo.RefKind != RefKind.Out)
TypePositionInfo.cs (1)
69
public ScopedKind ScopedKind { get; init; } = ScopedKind.
None
;