22 references to Name
Microsoft.CodeAnalysis.Razor.Compiler (22)
Language\DefaultRazorIntermediateNodeLoweringPhase.cs (10)
994minimizedAttr.Name.GetContent(), string.Empty)); 1396node.Name?.LiteralTokens); 1407AttributeName = node.Name.GetContent(), 1411AttributeNameSpan = BuildSourceSpanFromNode(node.Name), 1419var name = node.Name.GetContent(); 1431node.Name?.LiteralTokens); 1859node.Name.LiteralTokens); 1860var position = node.NamePrefix?.Position ?? node.Name.Position; 1863var name = node.Name.GetContent(); 1881AttributeNameSpan = BuildSourceSpanFromNode(node.Name),
Language\Legacy\ClassifiedSpanVisitor.cs (1)
267spanComputer.Add(node.Name);
Language\Legacy\TagHelperBlockRewriter.cs (4)
95attributeNameLocation = minimizedAttributeBlock.Name.GetSourceLocation(source); 231var result = CreateTryParseResult(attributeBlock.Name.GetContent(), tagHelpers, processedBoundAttributeNames); 246attributeBlock.Name, 417var attributeNameSyntax = attributeBlock.Name;
Language\Legacy\TagHelperParseTreeRewriter.cs (2)
413if (minimizedAttributeBlock.Name == null) 419var minimizedAttribute = new KeyValuePair<string, string>(minimizedAttributeBlock.Name.GetContent(), string.Empty);
Language\Syntax\Generated\Syntax.xml.Main.Generated.cs (1)
294=> node.Update((MarkupTextLiteralSyntax)Visit(node.NamePrefix), (MarkupTextLiteralSyntax)Visit(node.Name));
Language\Syntax\Generated\Syntax.xml.Syntax.Generated.cs (4)
491if (namePrefix != NamePrefix || name != Name) 503public MarkupMinimizedAttributeBlockSyntax WithNamePrefix(MarkupTextLiteralSyntax namePrefix) => Update(namePrefix, Name); 506public MarkupMinimizedAttributeBlockSyntax AddNameLiteralTokens(params SyntaxToken[] items) => WithName(this.Name.WithLiteralTokens(this.Name.LiteralTokens.AddRange(items)));