12 references to DynamicType
Microsoft.CodeAnalysis.CSharp (12)
Binder\Binder_Await.cs (1)
40
TypeSymbol awaitExpressionType = info.GetResult?.ReturnType ?? (hasErrors ? CreateErrorType() : Compilation.
DynamicType
);
Binder\Binder_Expressions.cs (1)
7576
type: Compilation.
DynamicType
,
Binder\Binder_Invocation.cs (1)
491
type: Compilation.
DynamicType
,
Binder\Binder_Operators.cs (2)
77
Compilation.
DynamicType
),
419
type: Compilation.
DynamicType
,
Binder\Binder_Patterns.cs (1)
1261
declType != (object)Compilation.
DynamicType
&&
Binder\Binder_Symbols.cs (1)
889
bindingResult = Compilation.
DynamicType
;
Binder\Binder_TupleOperators.cs (1)
194
TypeSymbol dynamicType = hasError ? CreateErrorType() : Compilation.
DynamicType
;
Compilation\CSharpCompilation.cs (1)
4528
get { return
DynamicType
.GetPublicSymbol(); }
Lowering\LocalRewriter\LocalRewriter_ForEachStatement.cs (1)
477
TypeSymbol awaitExpressionType = disposeAwaitableInfoOpt.GetResult?.ReturnType ?? _compilation.
DynamicType
;
Lowering\LocalRewriter\LocalRewriter_TupleBinaryOperator.cs (1)
555
BoundExpression dynamicResult = _dynamicFactory.MakeDynamicBinaryOperator(single.Kind, left, right, isCompoundAssignment: false, _compilation.
DynamicType
).ToExpression();
Lowering\LocalRewriter\LocalRewriter_UsingStatement.cs (1)
480
TypeSymbol awaitExpressionType = awaitOpt.GetResult?.ReturnType ?? _compilation.
DynamicType
;