9 references to Type
Microsoft.CodeAnalysis.CSharp (9)
Compilation\MemberSemanticModel.cs (2)
1087
var anonymousType = bound.
Type
as NamedTypeSymbol;
1103
return (bound == null) ? null : (bound.
Type
as NamedTypeSymbol).GetPublicSymbol();
FlowAnalysis\NullableWalker.cs (2)
4487
Debug.Assert(node.
Type
.IsAnonymousType);
4489
var anonymousType = (NamedTypeSymbol)node.
Type
;
Generated\BoundNodes.xml.Generated.cs (4)
7001
if (!Symbols.SymbolEqualityComparer.ConsiderEverything.Equals(constructor, this.Constructor) || arguments != this.Arguments || declarations != this.Declarations || !TypeSymbol.Equals(type, this.
Type
, TypeCompareKind.ConsiderEverything))
11879
TypeSymbol? type = this.VisitType(node.
Type
);
14282
updatedNode = node.Update(constructor, arguments, declarations, node.
Type
);
16630
new TreeDumperNode("type", node.
Type
, null),
Lowering\LocalRewriter\LocalRewriter_AnonymousObjectCreation.cs (1)
34
type: node.
Type
);