196 references to GetPublicSymbol
Microsoft.CodeAnalysis.CSharp (59)
Binder\Semantics\Conversions\Conversion.cs (1)
1022
return this.Method.
GetPublicSymbol
();
Compilation\CSharpCompilation.cs (3)
4298
return new SynthesizedIntrinsicOperatorSymbol(csharpLeftType, name, csharpRightType, csharpReturnType).
GetPublicSymbol
();
4524
return new SynthesizedIntrinsicOperatorSymbol(csharpOperandType, name, csharpReturnType).
GetPublicSymbol
();
4586
return this.GetEntryPoint(cancellationToken).
GetPublicSymbol
();
Compilation\CSharpSemanticModel.cs (4)
1675
results.Add(reduced.
GetPublicSymbol
());
2000
return new SymbolInfo(pat.DeconstructMethod.
GetPublicSymbol
());
5188
: ImmutableArray.Create<ISymbol>(namedType, primaryConstructor.
GetPublicSymbol
());
5206
return interceptor.
GetPublicSymbol
();
Compilation\MemberSemanticModel.cs (5)
625
return GetDeclaredLocalFunction(declarationSyntax).
GetPublicSymbol
();
933
getResult: awaitableInfo.GetResult.
GetPublicSymbol
(),
989
enumeratorInfoOpt.GetEnumeratorInfo.Method.
GetPublicSymbol
(),
990
enumeratorInfoOpt.MoveNextInfo.Method.
GetPublicSymbol
(),
992
disposeMethod.
GetPublicSymbol
(),
Compilation\SyntaxTreeSemanticModel.cs (4)
1497
return SynthesizedSimpleProgramEntryPointSymbol.GetSimpleProgramEntryPoint(Compilation, declarationSyntax, fallbackToMainEntryPoint: false).
GetPublicSymbol
();
1535
return ((MethodSymbol)GetDeclaredMemberSymbol(declarationSyntax)).
GetPublicSymbol
();
1617
return (this.GetDeclaredMember(container, declarationSyntax.Span, isKnownToBeANamespace: false) as MethodSymbol).
GetPublicSymbol
();
1640
return (this.GetDeclaredMember(container, declarationSyntax.Span, isKnownToBeANamespace: false) as MethodSymbol).
GetPublicSymbol
();
FlowAnalysis\CSharpDataFlowAnalysis.cs (1)
397
return ImmutableArray.CreateRange(data.Where(s => s.CanBeReferencedByName).OrderBy(s => s, LexicalOrderSymbolComparer.Instance).Select(p => p.
GetPublicSymbol
()));
Operations\CSharpOperationFactory.cs (23)
458
return new InvocationOperation(targetMethod.
GetPublicSymbol
(), constrainedToType.GetPublicSymbol(), receiver, isVirtual, arguments, _semanticModel, syntax, type, isImplicit);
516
var objectCreationOperation = new ObjectCreationOperation(boundAttribute.Constructor.
GetPublicSymbol
(), initializer, DeriveArguments(boundAttribute), _semanticModel, boundAttribute.Syntax, boundAttribute.GetPublicTypeSymbol(), boundAttribute.ConstantValueOpt, isImplicit: true);
733
return new ObjectCreationOperation(constructor.
GetPublicSymbol
(), initializer, arguments, _semanticModel, syntax, type, constantValue, isImplicit);
744
return new WithOperation(operand, constructor.
GetPublicSymbol
(), initializer, _semanticModel, syntax, type, isImplicit);
940
return new InvocationOperation(addMethod.
GetPublicSymbol
(), constrainedToType: null, receiver, isVirtual, arguments, _semanticModel, syntax, type, isImplicit);
996
IMethodSymbol symbol = boundLambda.Symbol.
GetPublicSymbol
();
1009
IMethodSymbol symbol = boundLocalFunctionStatement.Symbol.
GetPublicSymbol
();
1168
return new MethodReferenceOperation(methodSymbol.
GetPublicSymbol
(), constrainedToType.GetPublicSymbol(), isVirtual, instance, _semanticModel, bindingSyntax, bindingType, isImplicit);
1228
IMethodSymbol? constructMethod = getConstructMethod((CSharpCompilation)_semanticModel.Compilation, expr).
GetPublicSymbol
();
1365
IMethodSymbol? operatorMethod = method.
GetPublicSymbol
();
1392
IMethodSymbol? operatorMethod = boundIncrementOperator.MethodOpt.
GetPublicSymbol
();
1435
IMethodSymbol? operatorMethod = boundUnaryOperator.MethodOpt.
GetPublicSymbol
();
1486
IMethodSymbol operatorMethod = boundBinaryOperator.LogicalOperator.
GetPublicSymbol
();
1488
boundBinaryOperator.FalseOperator.
GetPublicSymbol
() :
1489
boundBinaryOperator.TrueOperator.
GetPublicSymbol
();
1510
IMethodSymbol? operatorMethod = boundBinaryOperator.Method.
GetPublicSymbol
();
1902
enumeratorInfoOpt.GetEnumeratorInfo.Method.
GetPublicSymbol
(),
1904
enumeratorInfoOpt.MoveNextInfo.Method.
GetPublicSymbol
(),
1916
enumeratorInfoOpt.PatternDisposeInfo?.Method.
GetPublicSymbol
(),
2039
disposeMethod: boundUsingStatement.PatternDisposeInfoOpt.Method.
GetPublicSymbol
(),
2178
disposeMethod: usingDecl.PatternDisposeInfoOpt.Method.
GetPublicSymbol
(),
2564
boundRecursivePattern.DeconstructMethod.
GetPublicSymbol
(),
2835
boundRange.MethodOpt.
GetPublicSymbol
(),
Symbols\Attributes\AttributeData.cs (1)
199
get { return this.AttributeConstructor.
GetPublicSymbol
(); }
Symbols\PublicModel\EventSymbol.cs (2)
44
return _underlying.AddMethod.
GetPublicSymbol
();
52
return _underlying.RemoveMethod.
GetPublicSymbol
();
Symbols\PublicModel\FunctionPointerTypeSymbol.cs (1)
21
public IMethodSymbol Signature => _underlying.Signature.
GetPublicSymbol
();
Symbols\PublicModel\LabelSymbol.cs (1)
25
return _underlying.ContainingMethod.
GetPublicSymbol
();
Symbols\PublicModel\MethodSymbol.cs (9)
137
return _underlying.ConstructedFrom.
GetPublicSymbol
();
161
return _underlying.OriginalDefinition.
GetPublicSymbol
();
169
return _underlying.OverriddenMethod.
GetPublicSymbol
();
192
return _underlying.ReducedFrom.
GetPublicSymbol
();
207
GetPublicSymbol
();
277
return _underlying.Construct(ConstructTypeArguments(typeArguments)).
GetPublicSymbol
();
282
return _underlying.Construct(ConstructTypeArguments(typeArguments, typeArgumentNullableAnnotations)).
GetPublicSymbol
();
289
return _underlying.PartialImplementationPart.
GetPublicSymbol
();
297
return _underlying.PartialDefinitionPart.
GetPublicSymbol
();
Symbols\PublicModel\NamedTypeSymbol.cs (1)
111
return UnderlyingNamedTypeSymbol.DelegateInvokeMethod.
GetPublicSymbol
();
Symbols\PublicModel\PropertySymbol.cs (2)
53
get { return _underlying.GetMethod.
GetPublicSymbol
(); }
58
get { return _underlying.SetMethod.
GetPublicSymbol
(); }
Symbols\PublicModel\TypeParameterSymbol.cs (1)
54
get { return _underlying.DeclaringMethod.
GetPublicSymbol
(); }
Microsoft.CodeAnalysis.CSharp.Emit.UnitTests (21)
CodeGen\CodeGenAwaitUsingTests.cs (17)
2296
var first = new AwaitExpressionInfo(getAwaiter1.
GetPublicSymbol
(), isCompleted1.GetPublicSymbol(), getResult1.
GetPublicSymbol
(), false);
2298
var nulls1 = new AwaitExpressionInfo(null, isCompleted1.GetPublicSymbol(), getResult1.
GetPublicSymbol
(), false);
2299
var nulls2 = new AwaitExpressionInfo(getAwaiter1.
GetPublicSymbol
(), null, getResult1.
GetPublicSymbol
(), false);
2300
var nulls3 = new AwaitExpressionInfo(getAwaiter1.
GetPublicSymbol
(), isCompleted1.GetPublicSymbol(), null, false);
2301
var nulls4 = new AwaitExpressionInfo(getAwaiter1.
GetPublicSymbol
(), isCompleted1.GetPublicSymbol(), null, true);
2324
var second1 = new AwaitExpressionInfo(getAwaiter2.
GetPublicSymbol
(), isCompleted1.GetPublicSymbol(), getResult1.
GetPublicSymbol
(), false);
2325
var second2 = new AwaitExpressionInfo(getAwaiter1.
GetPublicSymbol
(), isCompleted2.GetPublicSymbol(), getResult1.
GetPublicSymbol
(), false);
2326
var second3 = new AwaitExpressionInfo(getAwaiter1.
GetPublicSymbol
(), isCompleted1.GetPublicSymbol(), getResult2.
GetPublicSymbol
(), false);
2327
var second4 = new AwaitExpressionInfo(getAwaiter2.
GetPublicSymbol
(), isCompleted2.GetPublicSymbol(), getResult2.
GetPublicSymbol
(), false);
2342
var another = new AwaitExpressionInfo(getAwaiter1.
GetPublicSymbol
(), isCompleted1.GetPublicSymbol(), getResult1.
GetPublicSymbol
(), false);
CodeGen\CodeGenDeconstructTests.cs (1)
261
Assert.Equal(firstDeconstructMethod.
GetPublicSymbol
(), deconstructionInfo.Method);
CodeGen\CodeGenLocalFunctionTests.cs (1)
33
result = ((MethodSymbol)kvp.Value.Method).
GetPublicSymbol
();
CodeGen\CodeGenTupleTest.cs (1)
20807
var mImplementations = ((MethodSymbol)c3.GetMember("I1<System.ValueTuple<System.Int32,System.Int32>>.M")).
GetPublicSymbol
().ExplicitInterfaceImplementations;
Emit\EmitMetadataTests.cs (1)
3832
debugEntryPoint: comp.GetMember<MethodSymbol>("Program.M1").
GetPublicSymbol
(),
Microsoft.CodeAnalysis.CSharp.Emit2.UnitTests (9)
Emit\EditAndContinue\EditAndContinueTests.cs (1)
12790
var allAddedSymbols = new ISymbol[] { mA1.
GetPublicSymbol
(), mX1.GetPublicSymbol() };
PDB\PDBTests.cs (8)
658
</symbols>", debugEntryPoint: f.
GetPublicSymbol
(), options: PdbValidationOptions.ExcludeScopes | PdbValidationOptions.ExcludeSequencePoints | PdbValidationOptions.ExcludeCustomDebugInformation);
660
var peReader = new PEReader(c.EmitToArray(debugEntryPoint: f.
GetPublicSymbol
()));
681
</symbols>", debugEntryPoint: f.
GetPublicSymbol
(), options: PdbValidationOptions.ExcludeScopes | PdbValidationOptions.ExcludeSequencePoints | PdbValidationOptions.ExcludeCustomDebugInformation);
683
var peReader = new PEReader(c.EmitToArray(debugEntryPoint: f.
GetPublicSymbol
()));
715
var result = c1.Emit(new MemoryStream(), new MemoryStream(), debugEntryPoint: f2.
GetPublicSymbol
());
720
result = c1.Emit(new MemoryStream(), new MemoryStream(), debugEntryPoint: d_t_g_int.
GetPublicSymbol
());
725
result = c1.Emit(new MemoryStream(), new MemoryStream(), debugEntryPoint: d_int_g.
GetPublicSymbol
());
730
result = c1.Emit(new MemoryStream(), new MemoryStream(), debugEntryPoint: d_int_g_int.
GetPublicSymbol
());
Microsoft.CodeAnalysis.CSharp.Emit3.UnitTests (30)
FirstClassSpanTests.cs (7)
6770
var arrayType = comp.GetMember<MethodSymbol>("C.M").
GetPublicSymbol
().Parameters.Single().Type;
6820
var arrayType = comp.GetMember<MethodSymbol>("C.M").
GetPublicSymbol
().Parameters.Single().Type;
6870
var arrayType = comp.GetMember<MethodSymbol>("C.M").
GetPublicSymbol
().Parameters.Single().Type;
6920
var arrayType = comp.GetMember<MethodSymbol>("C.M").
GetPublicSymbol
().Parameters.Single().Type;
6969
var arrayType = comp.GetMember<MethodSymbol>("C.M").
GetPublicSymbol
().Parameters.Single().Type;
7000
var methodSymbol = comp.GetMember<MethodSymbol>("C.E").
GetPublicSymbol
();
7008
var arrayType = comp.GetMember<MethodSymbol>("C.M").
GetPublicSymbol
().Parameters.Single().Type;
PartialEventsAndConstructorsTests.cs (16)
1568
Assert.True(ev.AddMethod!.
GetPublicSymbol
().IsExtern);
1569
Assert.True(ev.RemoveMethod!.
GetPublicSymbol
().IsExtern);
1571
Assert.True(ev.PartialImplementationPart!.AddMethod!.
GetPublicSymbol
().IsExtern);
1572
Assert.True(ev.PartialImplementationPart!.RemoveMethod!.
GetPublicSymbol
().IsExtern);
1576
Assert.True(c.
GetPublicSymbol
().IsExtern);
1577
Assert.True(c.PartialImplementationPart!.
GetPublicSymbol
().IsExtern);
1595
Assert.False(ev.AddMethod!.
GetPublicSymbol
().IsExtern);
1596
Assert.False(ev.RemoveMethod!.
GetPublicSymbol
().IsExtern);
1599
Assert.False(c.
GetPublicSymbol
().IsExtern);
1717
Assert.True(accessor.
GetPublicSymbol
().IsExtern);
1760
Assert.True(ev.AddMethod!.
GetPublicSymbol
().IsExtern);
1764
Assert.True(ev.RemoveMethod!.
GetPublicSymbol
().IsExtern);
1770
Assert.True(c.
GetPublicSymbol
().IsExtern);
1779
Assert.False(ev.AddMethod!.
GetPublicSymbol
().IsExtern);
1783
Assert.False(ev.RemoveMethod!.
GetPublicSymbol
().IsExtern);
1789
Assert.False(c.
GetPublicSymbol
().IsExtern);
RefReadonlyParameterTests.cs (2)
7105
Assert.Same(methodFromCref, methodFromClass.
GetPublicSymbol
());
7133
Assert.Same(methodFromCref, methodFromClass.
GetPublicSymbol
());
Semantics\PrimaryConstructorTests.cs (5)
20655
Assert.Same(primaryConstructor, namedType.GetSymbol<SourceMemberContainerTypeSymbol>().PrimaryConstructor.
GetPublicSymbol
());
20689
Assert.Same(primaryConstructor1, namedType1.GetSymbol<SourceMemberContainerTypeSymbol>().PrimaryConstructor.
GetPublicSymbol
());
20733
Assert.Same(primaryConstructor1, namedType1.GetSymbol<SourceMemberContainerTypeSymbol>().PrimaryConstructor.
GetPublicSymbol
());
20778
var primaryConstructor1 = namedType1.GetSymbol<SourceMemberContainerTypeSymbol>().PrimaryConstructor.
GetPublicSymbol
();
20830
Assert.Same(primaryConstructor1, namedType1.GetSymbol<SourceMemberContainerTypeSymbol>().PrimaryConstructor.
GetPublicSymbol
());
Microsoft.CodeAnalysis.CSharp.Semantic.UnitTests (41)
Semantics\DeconstructionTests.cs (4)
5992
Assert.Equal(symbols.Symbol, main.
GetPublicSymbol
());
6035
Assert.Equal(symbols.Symbol, main.
GetPublicSymbol
());
6075
Assert.Equal(symbols.Symbol, main.
GetPublicSymbol
());
6157
Assert.Equal(symbols.Symbol, main.
GetPublicSymbol
());
Semantics\ForEachTests.cs (4)
3276
Assert.Equal(enumeratorInfo.GetEnumeratorInfo.Method.
GetPublicSymbol
(), statementInfo.GetEnumeratorMethod);
3277
Assert.Equal(enumeratorInfo.CurrentPropertyGetter.
GetPublicSymbol
(), statementInfo.CurrentProperty.GetMethod);
3278
Assert.Equal(enumeratorInfo.MoveNextInfo.Method.
GetPublicSymbol
(), statementInfo.MoveNextMethod);
3284
Assert.Equal(enumeratorInfo.PatternDisposeInfo.Method.
GetPublicSymbol
(), statementInfo.DisposeMethod);
Semantics\GenericConstraintsTests.cs (4)
3144
Assert.Equal(declaredMethod.
GetPublicSymbol
(), inferredMethod);
3174
Assert.Equal(declaredMethod.
GetPublicSymbol
(), inferredMethod.ConstructedFrom());
3200
Assert.Equal(declaredMethod.
GetPublicSymbol
(), inferredMethod);
3229
Assert.Equal(declaredMethod.
GetPublicSymbol
(), inferredMethod.ConstructedFrom());
Semantics\InitOnlyMemberTests.cs (11)
1464
Assert.False(getter.
GetPublicSymbol
().IsInitOnly);
1477
Assert.True(setter.
GetPublicSymbol
().IsInitOnly);
2473
Assert.False(constructor.
GetPublicSymbol
().IsInitOnly);
2477
Assert.False(destructor.
GetPublicSymbol
().IsInitOnly);
2495
Assert.False(conversion.
GetPublicSymbol
().IsInitOnly);
2499
Assert.False(addition.
GetPublicSymbol
().IsInitOnly);
2567
Assert.Equal(isSetter, method.
GetPublicSymbol
().IsInitOnly);
3638
Assert.False(method.
GetPublicSymbol
().IsInitOnly);
3697
Assert.False(method.
GetPublicSymbol
().IsInitOnly);
4146
Assert.False(localFunctionSymbol.
GetPublicSymbol
().IsInitOnly);
4156
Assert.False(method.
GetPublicSymbol
().IsInitOnly);
Semantics\IteratorTests.cs (6)
39
IMethodSymbol publicI = i.
GetPublicSymbol
();
91
Assert.True(i.
GetPublicSymbol
().IsIterator);
126
Assert.False(i1.
GetPublicSymbol
().IsIterator);
130
Assert.False(i2.
GetPublicSymbol
().IsIterator);
158
Assert.False(i1.
GetPublicSymbol
().IsIterator);
162
Assert.False(i2.
GetPublicSymbol
().IsIterator);
Semantics\LambdaTests.cs (3)
3945
var expectedAttributeConstructor = comp.GetTypeByMetadataName(expectedAttributeName).InstanceConstructors.Single().
GetPublicSymbol
();
7630
var method = comp.GetMember<MethodSymbol>("Program.M").
GetPublicSymbol
();
8074
var m2 = comp.GetMember<MethodSymbol>("C.M2").
GetPublicSymbol
();
Semantics\LocalFunctionTests.cs (2)
2377
Assert.True(local.
GetPublicSymbol
().IsIterator);
2383
Assert.True(local.
GetPublicSymbol
().IsIterator);
Semantics\LookupTests.cs (1)
1793
Assert.Equal(methodT.
GetPublicSymbol
(), symbols.Single()); // Hides type parameter.
Semantics\NativeIntegerTests.cs (2)
121
Assert.Equal("Sub I.F1(x As System.IntPtr, y As System.IntPtr)", VisualBasic.SymbolDisplay.ToDisplayString(method.
GetPublicSymbol
(), SymbolDisplayFormat.TestFormat));
126
Assert.Equal("Sub I.F2(x As System.UIntPtr, y As System.UIntPtr)", VisualBasic.SymbolDisplay.ToDisplayString(method.
GetPublicSymbol
(), SymbolDisplayFormat.TestFormat));
Semantics\OperatorTests.cs (1)
6942
Assert.Equal(expectedOperator.
GetPublicSymbol
(), info.Symbol);
Semantics\ReadOnlyStructsTests.cs (1)
1327
Assert.Equal(isReadOnly, property.GetMethod.
GetPublicSymbol
().IsReadOnly);
Semantics\UnsafeTests.cs (2)
7876
Assert.True(methodGroupSummary.MethodGroup.SetEquals(ImmutableArray.Create<IMethodSymbol>(structMethod1.
GetPublicSymbol
(), structMethod2.
GetPublicSymbol
()), EqualityComparer<IMethodSymbol>.Default));
Microsoft.CodeAnalysis.CSharp.Symbol.UnitTests (32)
DocumentationComments\ParameterTests.cs (1)
693
var method = compilation.GlobalNamespace.GetMember<NamedTypeSymbol>("Program").GetMember<MethodSymbol>("M").
GetPublicSymbol
();
SymbolDisplay\SymbolDisplayTests.cs (2)
8633
var methodSymbol = comp.GetMember<MethodSymbol>("C.M").
GetPublicSymbol
();
8658
var methodSymbol = comp.GetMember<MethodSymbol>("C.M").
GetPublicSymbol
();
Symbols\ExtendedPartialMethodsTests.cs (2)
3833
verifyPublicAPI(comp.GetMember<MethodSymbol>("C.M1").
GetPublicSymbol
());
3834
verifyPublicAPI(comp.GetMember<MethodSymbol>("C.M2").
GetPublicSymbol
());
Symbols\ExtensionMethodTests.cs (2)
2858
reducedWithReceiver = extensionMethod.
GetPublicSymbol
().ReduceExtensionMethod(msi.GetPublicSymbol());
2881
reducedWithReceiver = extensionMethod.
GetPublicSymbol
().ReduceExtensionMethod(msi.GetPublicSymbol());
Symbols\MethodImplementationFlagsTests.cs (10)
39
var aggressiveInliningMethod = c.GetMember<MethodSymbol>("M_Aggressive").
GetPublicSymbol
();
42
var noInliningMethod = c.GetMember<MethodSymbol>("M_NoInlining").
GetPublicSymbol
();
71
var aggressiveOptimizationMethod = c.GetMember<MethodSymbol>("M_Aggressive").
GetPublicSymbol
();
78
var noOptimizationMethod = c.GetMember<MethodSymbol>("M_NoOptimization").
GetPublicSymbol
();
118
var aggressiveOptNoInliningMethod = c.GetMember<MethodSymbol>("M_AggressiveOpt_NoInlining").
GetPublicSymbol
();
125
var noOptNoInliningMethod = c.GetMember<MethodSymbol>("M_NoOpt_NoInlining").
GetPublicSymbol
();
128
var aggressiveOptAggressiveInliningMethod = c.GetMember<MethodSymbol>("M_AggressiveOpt_AggressiveInlining").
GetPublicSymbol
();
135
var noOptAggressiveInliningMethod = c.GetMember<MethodSymbol>("M_NoOpt_AggressiveInlining").
GetPublicSymbol
();
159
var method = c.GetMember<MethodSymbol>("M").
GetPublicSymbol
();
181
var method = c.GetMember<MethodSymbol>("M").
GetPublicSymbol
();
Symbols\PartialPropertiesTests.cs (7)
699
Assert.True(prop.GetMethod!.
GetPublicSymbol
().IsExtern);
700
Assert.True(prop.SetMethod!.
GetPublicSymbol
().IsExtern);
702
Assert.True(prop.PartialImplementationPart!.GetMethod!.
GetPublicSymbol
().IsExtern);
703
Assert.True(prop.PartialImplementationPart!.SetMethod!.
GetPublicSymbol
().IsExtern);
712
Assert.False(prop.GetMethod!.
GetPublicSymbol
().IsExtern);
713
Assert.False(prop.SetMethod!.
GetPublicSymbol
().IsExtern);
792
Assert.True(accessor.
GetPublicSymbol
().IsExtern);
Symbols\Source\FileModifierTests.cs (1)
3512
Assert.Equal(expectedMember.
GetPublicSymbol
(), symbolInfo.Symbol);
Symbols\Source\MethodTests.cs (7)
2408
var m = comp.GetMember<MethodSymbol>("C.M").
GetPublicSymbol
();
2424
var m = comp.GetMember<MethodSymbol>("C.M").
GetPublicSymbol
();
2443
var m = comp.GetMember<MethodSymbol>("C.M").
GetPublicSymbol
();
2469
var m = comp.GetMember<MethodSymbol>("C.M").
GetPublicSymbol
();
2491
var m = comp.GetMember<MethodSymbol>("C.M").
GetPublicSymbol
();
2511
var m = module.GlobalNamespace.GetTypeMember("C").GetMethod("M").
GetPublicSymbol
();
2518
var m = module.GlobalNamespace.GetTypeMember("C").GetMethod("M").
GetPublicSymbol
();
Microsoft.CodeAnalysis.CSharp.Test.Utilities (4)
CompilationTestUtils.cs (4)
136
CheckReducedExtensionMethod(reducedMethod.
GetPublicSymbol
(), reducedFrom.
GetPublicSymbol
());
155
CheckConstructedMethod(constructedMethod.
GetPublicSymbol
(), constructedFrom.
GetPublicSymbol
());