18 references to Transition
Microsoft.CodeAnalysis.Razor.Compiler (11)
Language\Legacy\ClassifiedSpanVisitor.cs (1)
257Visit(node.Transition);
Language\Syntax\Generated\Syntax.xml.Main.Generated.cs (1)
339=> node.Update((MarkupTextLiteralSyntax)Visit(node.NamePrefix), (RazorMetaCodeSyntax)Visit(node.Transition), (MarkupTextLiteralSyntax)Visit(node.Name), (RazorMetaCodeSyntax)Visit(node.Colon), (MarkupTextLiteralSyntax)Visit(node.ParameterName), node.TagHelperAttributeInfo);
Language\Syntax\Generated\Syntax.xml.Syntax.Generated.cs (8)
1529if (namePrefix != NamePrefix || transition != Transition || name != Name || colon != Colon || parameterName != ParameterName) 1541public MarkupMinimizedTagHelperDirectiveAttributeSyntax WithNamePrefix(MarkupTextLiteralSyntax namePrefix) => Update(namePrefix, Transition, Name, Colon, ParameterName, TagHelperAttributeInfo); 1543public MarkupMinimizedTagHelperDirectiveAttributeSyntax WithName(MarkupTextLiteralSyntax name) => Update(NamePrefix, Transition, name, Colon, ParameterName, TagHelperAttributeInfo); 1544public MarkupMinimizedTagHelperDirectiveAttributeSyntax WithColon(RazorMetaCodeSyntax colon) => Update(NamePrefix, Transition, Name, colon, ParameterName, TagHelperAttributeInfo); 1545public MarkupMinimizedTagHelperDirectiveAttributeSyntax WithParameterName(MarkupTextLiteralSyntax parameterName) => Update(NamePrefix, Transition, Name, Colon, parameterName, TagHelperAttributeInfo); 1546public MarkupMinimizedTagHelperDirectiveAttributeSyntax WithTagHelperAttributeInfo(TagHelperAttributeInfo tagHelperAttributeInfo) => Update(NamePrefix, Transition, Name, Colon, ParameterName, tagHelperAttributeInfo); 1548public MarkupMinimizedTagHelperDirectiveAttributeSyntax AddTransitionMetaCode(params SyntaxToken[] items) => WithTransition(this.Transition.WithMetaCode(this.Transition.MetaCode.AddRange(items)));
Language\Syntax\MarkupMinimizedTagHelperDirectiveAttributeSyntax.cs (1)
13Transition.GetContent(),
Microsoft.CodeAnalysis.Razor.Workspaces (7)
Completion\DirectiveAttributeCompletionItemProviderBase.cs (1)
95var directiveAttributeTransition = minimizedDirectiveAttribute.Transition;
Extensions\RazorCodeDocumentExtensions_ClassifiedSpans.cs (1)
285Visit(node.Transition);
Formatting\FormattingVisitor.cs (1)
408Visit(node.Transition);
Hover\HoverFactory.cs (1)
167span = span.WithStart(start => start.WithCharacter(ch => ch - minimizedAttribute.Transition.Width));
HtmlFacts.cs (1)
262var fullNameSpan = TextSpan.FromBounds(minimizedTagHelperDirectiveAttribute.Transition.Span.Start, minimizedTagHelperDirectiveAttribute.Name.Span.End);
RazorSyntaxFacts.cs (1)
96MarkupMinimizedTagHelperDirectiveAttributeSyntax att => CalculateFullSpan(att.Name, att.ParameterName, att.Transition),
SemanticTokens\SemanticTokensVisitor.cs (1)
432AddSemanticRange(node.Transition, tokenTypes.RazorTransition);