9 references to Type
Microsoft.CodeAnalysis.CSharp (9)
Generated\BoundNodes.xml.Generated.cs (4)
1260
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))
10944
TypeSymbol? type = this.VisitType(node.
Type
);
12546
updatedNode = node.Update(node.OperatorKind, operand, methodOpt, constrainedToTypeOpt, operandPlaceholder, operandConversion, resultPlaceholder, resultConversion, node.ResultKind, node.OriginalUserDefinedOperatorsOpt, node.
Type
);
15183
new TreeDumperNode("type", node.
Type
, null),
Lowering\LocalRewriter\LocalRewriter_UnaryOperator.cs (5)
441
Debug.Assert(TypeSymbol.Equals(operandType, node.
Type
, TypeCompareKind.ConsiderEverything2));
573
return _dynamicFactory.MakeDynamicUnaryOperator(node.OperatorKind, rewrittenValueToIncrement, node.
Type
).ToExpression();
906
return node.
Type
;
956
return node.
Type
;
1018
TypeSymbol? underlyingType = node.
Type
;