9 references to Create
Microsoft.CodeAnalysis (2)
Compilation\Expression.cs (1)
38
return ConstantValue.
Create
(1, ConstantValueTypeDiscriminator.Int32);
ConstantValue.cs (1)
359
return
Create
(value, discriminator);
Microsoft.CodeAnalysis.CSharp (7)
Lowering\LocalRewriter\LocalRewriter_BinaryOperator.cs (2)
2110
return MakeLiteral(syntax, ConstantValue.
Create
(rewrittenExpr.ConstantValueOpt.IsNull, ConstantValueTypeDiscriminator.Boolean), boolType);
2112
return MakeLiteral(syntax, ConstantValue.
Create
(!rewrittenExpr.ConstantValueOpt.IsNull, ConstantValueTypeDiscriminator.Boolean), boolType);
Lowering\LocalRewriter\LocalRewriter_ForEachStatement.cs (2)
1097
constantValue: ConstantValue.
Create
(dimension, ConstantValueTypeDiscriminator.Int32),
1151
constantValue: ConstantValue.
Create
(dimension, ConstantValueTypeDiscriminator.Int32),
Lowering\SyntheticBoundNodeFactory.cs (2)
1782
return Literal(ConstantValue.
Create
(rewrittenExpr.ConstantValueOpt.IsNull, ConstantValueTypeDiscriminator.Boolean), boolType);
1784
return Literal(ConstantValue.
Create
(rewrittenExpr.ConstantValueOpt.IsNull, ConstantValueTypeDiscriminator.Boolean), boolType);
Symbols\Source\SourceComplexParameterSymbol.cs (1)
1055
return ConstantValue.
Create
(arg.ValueInternal, constantValueDiscriminator);