43 references to OperatorToken
Microsoft.CodeAnalysis.VisualBasic (21)
Generated\Syntax.xml.Syntax.Generated.vb (6)
8375return Update(attributeLists, Me.Modifiers, Me.OperatorKeyword, Me.OperatorToken, Me.ParameterList, Me.AsClause)
8419return Update(Me.AttributeLists, modifiers, Me.OperatorKeyword, Me.OperatorToken, Me.ParameterList, Me.AsClause)
8445return Update(Me.AttributeLists, Me.Modifiers, operatorKeyword, Me.OperatorToken, Me.ParameterList, Me.AsClause)
8493return Update(Me.AttributeLists, Me.Modifiers, Me.OperatorKeyword, Me.OperatorToken, parameterList, Me.AsClause)
8524return Update(Me.AttributeLists, Me.Modifiers, Me.OperatorKeyword, Me.OperatorToken, Me.ParameterList, asClause)
8585If attributeLists <> Me.AttributeLists OrElse modifiers <> Me.Modifiers OrElse operatorKeyword <> Me.OperatorKeyword OrElse operatorToken <> Me.OperatorToken OrElse parameterList IsNot Me.ParameterList OrElse asClause IsNot Me.AsClause Then
Symbols\Source\SourceMethodSymbol.vb (12)
323Select Case syntax.OperatorToken.Kind
340Throw ExceptionUtilities.UnexpectedValue(syntax.OperatorToken.Kind)
366binder.ReportDiagnostic(diagBag, syntax.OperatorToken, paramCountMismatchERRID, SyntaxFacts.GetText(syntax.OperatorToken.Kind))
371flags = flags Or If(syntax.OperatorToken.Kind = SyntaxKind.CTypeKeyword, SourceMemberFlags.MethodKindConversion, SourceMemberFlags.MethodKindOperator)
470binder.ReportDiagnostic(diagBag, syntax.OperatorToken, ERRID.ERR_OperatorMustBeShared)
474If syntax.OperatorToken.Kind = SyntaxKind.CTypeKeyword Then
476binder.ReportDiagnostic(diagBag, syntax.OperatorToken, ERRID.ERR_ConvMustBeWideningOrNarrowing)
878Return DirectCast(node, OperatorStatementSyntax).OperatorToken.Span
923Select Case operatorStatement.OperatorToken.Kind
1016Throw ExceptionUtilities.UnexpectedValue(operatorStatement.OperatorToken.Kind)
2227Return DirectCast(methodStatement, OperatorStatementSyntax).OperatorToken
Microsoft.CodeAnalysis.VisualBasic.CodeStyle (2)
Microsoft.CodeAnalysis.VisualBasic.Features (2)
Microsoft.CodeAnalysis.VisualBasic.Syntax.UnitTests (3)
Microsoft.CodeAnalysis.VisualBasic.Workspaces (8)
Microsoft.VisualStudio.LanguageServices.VisualBasic (7)