11 references to Type
Microsoft.CodeAnalysis.CSharp (11)
Generated\BoundNodes.xml.Generated.cs (4)
1261
if (operatorKind != this.OperatorKind || operand != this.Operand || !Symbols.SymbolEqualityComparer.ConsiderEverything.Equals(methodOpt, this.MethodOpt) || !TypeSymbol.Equals(constrainedToTypeOpt, this.ConstrainedToTypeOpt, TypeCompareKind.ConsiderEverything) || operandPlaceholder != this.OperandPlaceholder || operandConversion != this.OperandConversion || resultPlaceholder != this.ResultPlaceholder || resultConversion != this.ResultConversion || resultKind != this.ResultKind || originalUserDefinedOperatorsOpt != this.OriginalUserDefinedOperatorsOpt || !TypeSymbol.Equals(type, this.
Type
, TypeCompareKind.ConsiderEverything))
10994
TypeSymbol? type = this.VisitType(node.
Type
);
12727
updatedNode = node.Update(node.OperatorKind, operand, methodOpt, constrainedToTypeOpt, operandPlaceholder, operandConversion, resultPlaceholder, resultConversion, node.ResultKind, node.OriginalUserDefinedOperatorsOpt, node.
Type
);
15363
new TreeDumperNode("type", node.
Type
, null),
Lowering\LocalRewriter\LocalRewriter_UnaryOperator.cs (7)
412
Debug.Assert(node.
Type
.IsVoidType());
418
Debug.Assert(TypeSymbol.Equals(operandType, node.
Type
, TypeCompareKind.AllIgnoreOptions));
574
Debug.Assert(TypeSymbol.Equals(operandType, node.
Type
, TypeCompareKind.ConsiderEverything2));
706
return _dynamicFactory.MakeDynamicUnaryOperator(node.OperatorKind, rewrittenValueToIncrement, node.
Type
).ToExpression();
1039
return node.
Type
;
1089
return node.
Type
;
1151
TypeSymbol? underlyingType = node.
Type
;