10 references to Type
Microsoft.CodeAnalysis.CSharp (10)
Compilation\CSharpSemanticModel.cs (1)
3823
increment.
Type
.StrippedType()));
Generated\BoundNodes.xml.Generated.cs (4)
1248
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))
10565
TypeSymbol? type = this.VisitType(node.
Type
);
12112
updatedNode = node.Update(node.OperatorKind, operand, methodOpt, constrainedToTypeOpt, operandPlaceholder, operandConversion, resultPlaceholder, resultConversion, node.ResultKind, node.OriginalUserDefinedOperatorsOpt, node.
Type
);
14646
new TreeDumperNode("type", node.
Type
, null),
Lowering\LocalRewriter\LocalRewriter_UnaryOperator.cs (5)
436
Debug.Assert(TypeSymbol.Equals(operandType, node.
Type
, TypeCompareKind.ConsiderEverything2));
567
return _dynamicFactory.MakeDynamicUnaryOperator(node.OperatorKind, rewrittenValueToIncrement, node.
Type
).ToExpression();
889
return node.
Type
;
939
return node.
Type
;
1001
TypeSymbol? underlyingType = node.
Type
;