Base:
property
Locations
Microsoft.CodeAnalysis.VisualBasic.Symbol.Locations
18 references to Locations
Microsoft.CodeAnalysis.VisualBasic (18)
Symbols\Source\CustomEventAccessorSymbol.vb (1)
69
Return BindParameters(Me.
Locations
.FirstOrDefault, binder, BlockSyntax.BlockStatement.ParameterList, diagBag)
Symbols\Source\SourceEventSymbol.vb (3)
107
diagnostics.Add(ERRID.ERR_DuplicateAddHandlerDef, accessor.
Locations
(0))
114
diagnostics.Add(ERRID.ERR_DuplicateRemoveHandlerDef, accessor.
Locations
(0))
121
diagnostics.Add(ERRID.ERR_DuplicateRaiseEventDef, accessor.
Locations
(0))
Symbols\Source\SourceMemberContainerTypeSymbol.vb (1)
1760
Debug.Assert(method.
Locations
.Length = 1)
Symbols\Source\SourceMethodSymbol.vb (6)
1173
Return If(
Locations
.FirstOrDefault(), NoLocation.Singleton)
1610
diagnostics.Add(ERRID.ERR_ExtensionMethodNoParams, Me.
Locations
(0))
1624
diagnostics.Add(ErrorFactory.ErrorInfo(ERRID.ERR_ExtensionMethodUncallable1, Me.Name), Me.
Locations
(0))
1634
diagnostics.Add(ErrorFactory.ErrorInfo(ERRID.ERR_InvalidOptionalParameterUsage1, "WebMethod"), Me.
Locations
(0))
1726
diagnostics.Add(ERRID.WRN_ConditionalNotValidOnFunction, Me.
Locations
(0))
1754
DirectCast(arguments.Diagnostics, BindingDiagnosticBag).Add(ERRID.ERR_ObsoleteInvalidOnEventMember, Me.
Locations
(0), description.FullName)
Symbols\Source\SourcePropertyAccessorSymbol.vb (1)
286
Return BindParameters(Me.m_property, Me, Me.
Locations
.FirstOrDefault, binder, BlockSyntax.BlockStatement.ParameterList, diagBag)
Symbols\Source\SourcePropertySymbol.vb (6)
119
diagnostics.Add(ERRID.ERR_DuplicatePropertyGet, accessorMethod.
Locations
(0))
126
diagnostics.Add(ERRID.ERR_DuplicatePropertySet, accessorMethod.
Locations
(0))
145
diagnostics.Add(ERRID.ERR_ReadOnlyHasSet, setMethod.
Locations
(0))
158
diagnostics.Add(ERRID.ERR_WriteOnlyHasGet, getMethod.
Locations
(0))
165
Dim accessor = If(getMethod.
Locations
(0).SourceSpan.Start < setMethod.
Locations
(0).SourceSpan.Start, setMethod, getMethod)