19 references to DynamicType
Microsoft.CodeAnalysis.CSharp (13)
Binder\Binder_Await.cs (1)
41TypeSymbol awaitExpressionType = (info.GetResult ?? info.RuntimeAsyncAwaitCall?.Method)?.ReturnType ?? (hasErrors ? CreateErrorType() : Compilation.DynamicType);
Binder\Binder_Conversions.cs (1)
1257var elementPlaceholder = new BoundValuePlaceholder(syntax, Compilation.DynamicType) { WasCompilerGenerated = true };
Binder\Binder_Expressions.cs (1)
7666type: Compilation.DynamicType,
Binder\Binder_Invocation.cs (1)
500type: Compilation.DynamicType,
Binder\Binder_Operators.cs (2)
89Compilation.DynamicType), 854type: Compilation.DynamicType,
Binder\Binder_Patterns.cs (1)
1273declType != (object)Compilation.DynamicType &&
Binder\Binder_Symbols.cs (1)
898bindingResult = Compilation.DynamicType;
Binder\Binder_TupleOperators.cs (1)
198TypeSymbol dynamicType = hasError ? CreateErrorType() : Compilation.DynamicType;
Compilation\CSharpCompilation.cs (1)
4645get { return DynamicType.GetPublicSymbol(); }
Lowering\LocalRewriter\LocalRewriter_ForEachStatement.cs (1)
481TypeSymbol awaitExpressionType = disposeAwaitableInfoOpt.GetResult?.ReturnType ?? _compilation.DynamicType;
Lowering\LocalRewriter\LocalRewriter_TupleBinaryOperator.cs (1)
555BoundExpression dynamicResult = _dynamicFactory.MakeDynamicBinaryOperator(single.Kind, left, right, isCompoundAssignment: false, _compilation.DynamicType).ToExpression();
Lowering\LocalRewriter\LocalRewriter_UsingStatement.cs (1)
480TypeSymbol awaitExpressionType = awaitOpt.GetResult?.ReturnType ?? _compilation.DynamicType;
Microsoft.CodeAnalysis.CSharp.Emit.UnitTests (2)
CodeGen\CodeGenReadonlyStructTests.cs (2)
889type = comp.DynamicType; 1053type = comp.DynamicType;
Microsoft.CodeAnalysis.CSharp.Semantic.UnitTests (4)
Semantics\OperatorTests.cs (4)
7504type = compilation.DynamicType; 7866types[types.Length - 3] = compilation.DynamicType; 8026types[types.Length - 3] = compilation.DynamicType; 8371containerName = compilation.DynamicType.ToTestDisplayString();