1 write to HasErrors
Microsoft.CodeAnalysis.CSharp (1)
BoundTree\BoundNode.cs (1)
399
clone.
HasErrors
= true;
649 references to HasErrors
Microsoft.CodeAnalysis.CSharp (649)
Binder\Binder.ValueChecks.cs (2)
4848
Debug.Assert(spreadElement.
HasErrors
4863
Debug.Assert(element.
HasErrors
);
Binder\Binder_Conversions.cs (9)
800
unconvertedSource.
HasErrors
);
1049
if (collectionCreation.
HasErrors
)
1469
hasErrors: projectionCall.
HasErrors
)
1914
Debug.Assert(boundExpression.
HasErrors
);
2249
Debug.Assert(call.
HasErrors
);
2460
hasErrors |= source.
HasErrors
|| destination.IsErrorType();
2507
new BoundSwitchExpressionArm(oldCase.Syntax, oldCase.Locals, oldCase.Pattern, oldCase.HasUnionMatching, oldCase.WhenClause, newValue, oldCase.Label, oldCase.
HasErrors
);
2515
source.DefaultLabel, source.ReportedNotExhaustive, destination, hasErrors || source.
HasErrors
).WithSuppression(source.IsSuppressed);
3116
var convertedNode = new BoundConvertedStackAllocExpression(syntax, elementType, boundStackAlloc.Count, boundStackAlloc.InitializerOpt, stackAllocType, boundStackAlloc.
HasErrors
);
Binder\Binder_Expressions.cs (14)
323
bool hasErrors = expression.
HasErrors
;
340
bool hasErrors = op.
HasErrors
;
382
sourceTuple.
HasErrors
).WithSuppression(sourceTuple.IsSuppressed);
3029
!underlyingExpr.
HasErrors
&& !bag.HasAnyErrors())
3976
hasErrors || interpolatedString.
HasErrors
);
6610
if (!result.
HasErrors
&&
6681
if (boundCall.
HasErrors
&& !boundCall.OriginalMethodsOpt.IsDefault)
7679
if (!boundLeft.
HasErrors
)
8272
if (!receiver.
HasErrors
)
8402
if (!boundMethodGroup.
HasErrors
&& typeArgumentsSyntax.Any(SyntaxKind.OmittedTypeArgument))
10297
if (!result.
HasErrors
&& receiver.Type?.IsPointerOrFunctionPointer() == true)
11383
return lengthOrCountAccess?.
HasErrors
== false && indexerOrSliceAccess?.
HasErrors
== false;
12509
receiver = new BoundConditionalReceiver(receiver.Syntax, 0, receiverType ?? CreateErrorType(), hasErrors: receiver.
HasErrors
) { WasCompilerGenerated = true };
Binder\Binder_Initializers.cs (1)
263
statement = new BoundExpressionStatement(statement.Syntax, expression, expression.
HasErrors
);
Binder\Binder_InterpolatedString.cs (14)
115
else if (!alignment.
HasErrors
)
273
unconvertedInterpolatedString.
HasErrors
);
303
fillin.
HasErrors
||
323
parts.Any(static p => p.
HasErrors
||
359
construction.
HasErrors
? BindingDiagnosticBag.Discarded : diagnostics,
368
unconvertedSource.
HasErrors
);
385
if (fillin.Alignment != null && !fillin.Alignment.
HasErrors
)
390
if (fillin.Format != null && !fillin.Format.
HasErrors
)
537
expression.
HasErrors
);
552
original.
HasErrors
);
598
unconvertedInterpolatedString.
HasErrors
);
670
Debug.Assert(appendCallsArray.All(appendCalls => appendCalls.All(a => a is {
HasErrors
: true } or BoundCall { Arguments: { Length: > 0 } } or BoundDynamicInvocation)));
799
Debug.Assert(constructorCall.
HasErrors
|| constructorCall is BoundObjectCreationExpression or BoundDynamicObjectCreationExpression);
979
Debug.Assert(call is BoundCall or BoundDynamicInvocation or {
HasErrors
: true });
Binder\Binder_Operators.cs (6)
276
if (finalConversion.
HasErrors
)
283
Debug.Assert(finalConversion.
HasErrors
|| (object)finalConversion == finalPlaceholder);
3405
bool hasErrors = resultConversion.
HasErrors
;
4089
if (!result.
HasErrors
)
5997
bool hasErrors = trueExpr.
HasErrors
| falseExpr.
HasErrors
;
Binder\Binder_Patterns.cs (5)
554
hasErrors |= pattern.
HasErrors
;
924
return !hasErrors && !lengthAccess.
HasErrors
;
946
return !indexerAccess.
HasErrors
;
1143
if (!convertedExpression.
HasErrors
&& !hasErrors)
1304
if (!hasErrors && unionType is not null && !convertedExpression.
HasErrors
&& constantValue is { IsBad: false } && expression.Type is not null)
Binder\Binder_Statements.cs (4)
1448
if (!boundLeft.
HasErrors
)
1497
|| op1.
HasErrors
);
1499
if (op1.
HasErrors
)
3091
hasErrors |= arg.
HasErrors
|| ((object)arg.Type != null && arg.Type.IsErrorType());
Binder\Binder_TupleOperators.cs (1)
65
tuple.Syntax, tuple, wasTargetTyped: false, builder.ToImmutableAndFree(), tuple.ArgumentNamesOpt, tuple.InferredNamesOpt, tuple.Type, tuple.
HasErrors
);
Binder\DecisionDagBuilder.cs (6)
366
(pattern.
HasErrors
|| pattern.InputType.Equals(input.DagTemp.Type, TypeCompareKind.AllIgnoreOptions) || pattern.InputType.IsErrorType()) :
896
Debug.Assert(constant.Value.Type is not null || constant.
HasErrors
);
931
RoslynDebug.Assert(inputTempType.IsErrorType() || recursive.
HasErrors
|| recursive.InputType.IsErrorType() || inputTempType.Equals(recursive.InputType, TypeCompareKind.AllIgnoreOptions));
1162
Debug.Assert(bin.
HasErrors
||
1190
tests.Add(new Tests.One(new BoundDagRelationalTest(rel.Syntax, rel.Relation, rel.ConstantValue, output, rel.
HasErrors
)));
1415
state.SelectedTest = new BoundDagNonNullTest(t.Syntax, isExplicitTest: true, t.Input, t.
HasErrors
);
Binder\DecisionDagBuilder_CheckOrReachability.cs (6)
68
if (pattern.
HasErrors
)
125
if (switchArm.Pattern.
HasErrors
)
180
if (label.Pattern.
HasErrors
)
1092
initialCheck = new BoundTypePattern(node.Syntax, node.DeclaredType, node.IsExplicitNotNullTest, isUnionMatching: false, node.InputType, node.NarrowedType, node.
HasErrors
);
1132
isUnionMatching: false, node.InputType, node.NarrowedType, node.
HasErrors
);
1167
isUnionMatching: false, node.InputType, node.NarrowedType, node.
HasErrors
);
Binder\DecisionDagBuilder_ListPatterns.cs (2)
18
Debug.Assert(inputType.IsErrorType() || list.
HasErrors
|| list.InputType.IsErrorType() ||
29
if (list.
HasErrors
)
Binder\ForEachLoopBinder.cs (2)
441
hasErrors = hasErrors || boundIterationVariableType.
HasErrors
|| iterationVariableType.Type.IsErrorType();
801
if (string.IsNullOrEmpty(collectionExprType.Name) && collectionExpr.
HasErrors
)
Binder\RefSafetyAnalysis.cs (7)
618
if (!node.
HasErrors
&& node.Operator.Method is { } compoundMethod)
876
if (!node.
HasErrors
)
992
if (node.
HasErrors
)
1083
if (!node.
HasErrors
)
1100
if (!node.
HasErrors
)
1416
if (!spreadElement.
HasErrors
)
1430
Debug.Assert(spreadElement.
HasErrors
Binder\Semantics\OverloadResolution\OverloadResolutionResult.cs (1)
677
if (receiverOpt?.
HasErrors
!= true)
Binder\SwitchBinder_Patterns.cs (6)
104
if (!label.
HasErrors
&& isSubsumed(label, reachableLabels) && label.Syntax.Kind() != SyntaxKind.DefaultSwitchLabel)
123
else if (!label.Pattern.
HasErrors
&& !anyPreviousErrors)
137
anyPreviousErrors |= label.
HasErrors
;
256
return new BoundSwitchLabel(node, label, pattern, hasUnionMatching, null, pattern.
HasErrors
);
262
bool hasErrors = pattern.
HasErrors
;
300
if (pattern is BoundConstantPattern {
HasErrors
: false } && IsUnderscore(expression))
Binder\SwitchExpressionArmBinder.cs (1)
49
return new BoundSwitchExpressionArm(node, locals, pattern, hasUnionMatching, whenClause, armResult, label, hasErrors | pattern.
HasErrors
);
Binder\SwitchExpressionBinder.cs (1)
77
hasErrors |= arm.
HasErrors
;
BoundTree\BoundAwaitableInfo.cs (1)
39
Debug.Assert(GetAwaiter is not null || RuntimeAsyncAwaitCall is not null || IsDynamic ||
HasErrors
);
BoundTree\BoundCall.cs (1)
17
Debug.Assert(ResultKind is LookupResultKind.Viable ||
HasErrors
);
BoundTree\BoundExpressionExtensions.cs (1)
65
if (member.
HasErrors
)
BoundTree\BoundNode.cs (2)
106
if (this.
HasErrors
|| this.Syntax != null && this.Syntax.HasErrors)
395
if (this.
HasErrors
)
BoundTree\BoundNodeExtensions.cs (2)
26
if (nodeArray[i].
HasErrors
)
36
return node != null && node.
HasErrors
;
BoundTree\BoundSpillSequence.cs (1)
29
expression => new BoundExpressionStatement(expression.Syntax, expression, expression.
HasErrors
));
BoundTree\BoundTypeOrValueExpression.cs (1)
15
Debug.Assert(!
HasErrors
);
BoundTree\OutDeconstructVarPendingInference.cs (1)
18
Placeholder = new BoundDeconstructValuePlaceholder(this.Syntax, variableSymbol: VariableSymbol, isDiscardExpression: IsDiscardExpression, type.Type, hasErrors: this.
HasErrors
|| !success);
BoundTree\UnboundLambda.cs (2)
447
var lambda = new UnboundLambda(Syntax, data, FunctionType, WithDependencies, nullableState, getterNullResilienceData,
HasErrors
);
460
var lambda = new UnboundLambda(Syntax, data, FunctionType, WithDependencies, _nullableState, _getterNullResilienceData,
HasErrors
);
BoundTree\VariablePendingInference.cs (2)
76
return new BoundLocal(this.Syntax, localSymbol, BoundLocalDeclarationKind.WithInferredType, constantValueOpt: null, isNullableUnknown: false, type: type.Type, hasErrors: this.
HasErrors
|| inferenceFailed).WithWasConverted();
107
hasErrors: this.
HasErrors
|| inferenceFailed);
Compiler\MethodCompiler.cs (9)
264
if (body.
HasErrors
|| diagnostics.HasAnyErrors())
781
if (!loweredBody.
HasErrors
)
1254
hasErrors = hasErrors || (hasBody && loweredBodyOpt.
HasErrors
) || diagsForCurrentMethod.HasAnyErrors();
1502
if (body.
HasErrors
)
1529
if (loweredBody.
HasErrors
)
1545
if (loweredBody.
HasErrors
)
1565
if (loweredBody.
HasErrors
)
1591
if (bodyWithoutLambdas.
HasErrors
)
1601
if (bodyWithoutIterators.
HasErrors
)
FlowAnalysis\AbstractFlowPass_Switch.cs (2)
51
if (reachableLabels.Contains(label.Label) || label.
HasErrors
||
166
if (!reachableLabels.Contains(arm.Label) || arm.Pattern.
HasErrors
)
FlowAnalysis\FlowAnalysisPass.cs (1)
59
Debug.Assert(method is not SourceMemberMethodSymbol { SyntaxNode: ConstructorDeclarationSyntax { Initializer: not null } } || block.
HasErrors
);
FlowAnalysis\NullableWalker.cs (15)
2169
Debug.Assert(node.
HasErrors
||
4285
Debug.Assert(node.
HasErrors
);
5101
var arrayType = VisitArrayInitialization(node.Type, initialization, node.
HasErrors
);
6519
else if (!node.
HasErrors
)
7122
if (node.
HasErrors
7716
if (node is BoundCall {
HasErrors
: true, ArgumentNamesOpt.IsDefaultOrEmpty: false, ArgsToParamsOpt.IsDefault: true } &&
7726
_disableDiagnostics |= node.
HasErrors
|| defaultArguments[i];
7765
if (!node.
HasErrors
&& !parametersOpt.IsDefault)
10209
if (!conversionOperand.
HasErrors
&& !targetType.IsErrorType())
11423
if (node.
HasErrors
)
11903
if (!node.
HasErrors
)
12414
Debug.Assert(node.
HasErrors
);
12521
Debug.Assert(node.
HasErrors
);
12528
Debug.Assert(node.
HasErrors
);
13623
var type = VisitArrayInitialization(node.Type, initialization, node.
HasErrors
);
FlowAnalysis\NullableWalker.DebugVerifier.cs (1)
369
if (!node.
HasErrors
&&
FlowAnalysis\NullableWalker_Patterns.cs (1)
1201
=> !arm.Pattern.
HasErrors
&& labelStateMap.TryGetValue(arm.Label, out var labelState) ? labelState.state : UnreachableState();
Generated\BoundNodes.xml.Generated.cs (471)
315
var result = new BoundFieldEqualsValue(this.Syntax, field, locals, value, this.
HasErrors
);
345
var result = new BoundPropertyEqualsValue(this.Syntax, property, locals, value, this.
HasErrors
);
375
var result = new BoundParameterEqualsValue(this.Syntax, parameter, locals, value, this.
HasErrors
);
403
var result = new BoundGlobalStatementInitializer(this.Syntax, statement, this.
HasErrors
);
476
var result = new BoundValuePlaceholder(this.Syntax, type, this.
HasErrors
);
504
var result = new BoundCapturedReceiverPlaceholder(this.Syntax, receiver, type, this.
HasErrors
);
545
var result = new BoundDeconstructValuePlaceholder(this.Syntax, variableSymbol, isDiscardExpression, type, this.
HasErrors
);
580
var result = new BoundTupleOperandPlaceholder(this.Syntax, type, this.
HasErrors
);
609
var result = new BoundAwaitableValuePlaceholder(this.Syntax, type, this.
HasErrors
);
644
var result = new BoundDisposableValuePlaceholder(this.Syntax, type, this.
HasErrors
);
682
var result = new BoundObjectOrCollectionValuePlaceholder(this.Syntax, isNewInstance, type, this.
HasErrors
);
717
var result = new BoundImplicitIndexerValuePlaceholder(this.Syntax, type, this.
HasErrors
);
749
var result = new BoundImplicitIndexerReceiverPlaceholder(this.Syntax, isEquivalentToThisReference, receiver, type, this.
HasErrors
);
784
var result = new BoundListPatternReceiverPlaceholder(this.Syntax, type, this.
HasErrors
);
819
var result = new BoundListPatternIndexPlaceholder(this.Syntax, type, this.
HasErrors
);
854
var result = new BoundSlicePatternReceiverPlaceholder(this.Syntax, type, this.
HasErrors
);
889
var result = new BoundSlicePatternRangePlaceholder(this.Syntax, type, this.
HasErrors
);
917
var result = new BoundCollectionBuilderElementsPlaceholder(this.Syntax, type, this.
HasErrors
);
948
var result = new BoundDup(this.Syntax, refKind, type, this.
HasErrors
);
976
var result = new BoundPassByCopy(this.Syntax, expression, type, this.
HasErrors
);
1013
var result = new BoundBadExpression(this.Syntax, resultKind, symbols, childBoundNodes, type, this.
HasErrors
);
1041
var result = new BoundBadStatement(this.Syntax, childBoundNodes, this.
HasErrors
);
1069
var result = new BoundExtractedFinallyBlock(this.Syntax, finallyBlock, this.
HasErrors
);
1104
var result = new BoundTypeExpression(this.Syntax, aliasOpt, boundContainingTypeOpt, boundDimensionsOpt, typeWithAnnotations, type, this.
HasErrors
);
1153
var result = new BoundTypeOrValueExpression(this.Syntax, binder, valueSymbol, type, this.
HasErrors
);
1194
var result = new BoundNamespaceExpression(this.Syntax, namespaceSymbol, aliasOpt, this.
HasErrors
);
1236
var result = new BoundUnaryOperator(this.Syntax, operatorKind, operand, constantValueOpt, methodOpt, constrainedToTypeOpt, resultKind, originalUserDefinedOperatorsOpt, type, this.
HasErrors
);
1284
var result = new BoundIncrementOperator(this.Syntax, operatorKind, operand, methodOpt, constrainedToTypeOpt, operandPlaceholder, operandConversion, resultPlaceholder, resultConversion, resultKind, originalUserDefinedOperatorsOpt, type, this.
HasErrors
);
1316
var result = new BoundAddressOfOperator(this.Syntax, operand, isManaged, type, this.
HasErrors
);
1345
var result = new BoundUnconvertedAddressOfOperator(this.Syntax, operand, this.
HasErrors
);
1388
var result = new BoundFunctionPointerLoad(this.Syntax, targetMethod, constrainedToTypeOpt, type, this.
HasErrors
);
1420
var result = new BoundPointerIndirectionOperator(this.Syntax, operand, refersToLocation, type, this.
HasErrors
);
1457
var result = new BoundPointerElementAccess(this.Syntax, expression, index, @checked, refersToLocation, type, this.
HasErrors
);
1494
var result = new BoundFunctionPointerInvocation(this.Syntax, invokedExpression, arguments, argumentRefKindsOpt, resultKind, type, this.
HasErrors
);
1526
var result = new BoundRefTypeOperator(this.Syntax, operand, getTypeFromHandle, type, this.
HasErrors
);
1556
var result = new BoundMakeRefOperator(this.Syntax, operand, type, this.
HasErrors
);
1588
var result = new BoundRefValueOperator(this.Syntax, nullableAnnotation, operand, type, this.
HasErrors
);
1620
var result = new BoundFromEndIndexExpression(this.Syntax, operand, methodOpt, type, this.
HasErrors
);
1653
var result = new BoundRangeExpression(this.Syntax, leftOperandOpt, rightOperandOpt, methodOpt, type, this.
HasErrors
);
1710
var result = new BoundBinaryOperator(this.Syntax, operatorKind, data, resultKind, left, right, type, this.
HasErrors
);
1748
var result = new BoundTupleBinaryOperator(this.Syntax, left, right, operatorKind, operators, type, this.
HasErrors
);
1801
var result = new BoundUserDefinedConditionalLogicalOperator(this.Syntax, operatorKind, logicalOperator, trueOperator, falseOperator, trueFalseOperandPlaceholder, trueFalseOperandConversion, constrainedToTypeOpt, resultKind, originalUserDefinedOperatorsOpt, left, right, type, this.
HasErrors
);
1848
var result = new BoundCompoundAssignmentOperator(this.Syntax, @operator, left, right, leftPlaceholder, leftConversion, finalPlaceholder, finalConversion, resultKind, originalUserDefinedOperatorsOpt, type, this.
HasErrors
);
1882
var result = new BoundAssignmentOperator(this.Syntax, left, right, isRef, type, this.
HasErrors
);
1917
var result = new BoundDeconstructionAssignmentOperator(this.Syntax, left, right, isUsed, type, this.
HasErrors
);
1958
var result = new BoundNullCoalescingOperator(this.Syntax, leftOperand, rightOperand, leftPlaceholder, leftConversion, operatorResultKind, @checked, type, this.
HasErrors
);
1989
var result = new BoundNullCoalescingAssignmentOperator(this.Syntax, leftOperand, rightOperand, type, this.
HasErrors
);
2028
var result = new BoundUnconvertedConditionalOperator(this.Syntax, condition, consequence, alternative, constantValueOpt, noCommonTypeError, this.
HasErrors
);
2072
var result = new BoundConditionalOperator(this.Syntax, isRef, condition, consequence, alternative, constantValueOpt, naturalTypeOpt, wasTargetTyped, type, this.
HasErrors
);
2105
var result = new BoundArrayAccess(this.Syntax, expression, indices, type, this.
HasErrors
);
2134
var result = new BoundRefArrayAccess(this.Syntax, arrayAccess, this.
HasErrors
);
2164
var result = new BoundArrayLength(this.Syntax, expression, type, this.
HasErrors
);
2205
var result = new BoundAwaitableInfo(this.Syntax, awaitableInstancePlaceholder, isDynamic, getAwaiter, isCompleted, getResult, runtimeAsyncAwaitCall, runtimeAsyncAwaitCallPlaceholder, this.
HasErrors
);
2240
var result = new BoundAwaitExpression(this.Syntax, expression, awaitableInfo, debugInfo, type, this.
HasErrors
);
2293
var result = new BoundTypeOfOperator(this.Syntax, sourceType, getTypeFromHandle, type, this.
HasErrors
);
2325
var result = new BoundBlockInstrumentation(this.Syntax, locals, prologue, epilogue, this.
HasErrors
);
2369
var result = new BoundMethodDefIndex(this.Syntax, method, type, this.
HasErrors
);
2412
var result = new BoundLocalId(this.Syntax, local, hoistedField, type, this.
HasErrors
);
2455
var result = new BoundParameterId(this.Syntax, parameter, hoistedField, type, this.
HasErrors
);
2490
var result = new BoundStateMachineInstanceId(this.Syntax, type, this.
HasErrors
);
2525
var result = new BoundMaximumMethodDefIndex(this.Syntax, type, this.
HasErrors
);
2563
var result = new BoundInstrumentationPayloadRoot(this.Syntax, analysisKind, type, this.
HasErrors
);
2598
var result = new BoundThrowIfModuleCancellationRequested(this.Syntax, type, this.
HasErrors
);
2633
var result = new ModuleCancellationTokenExpression(this.Syntax, type, this.
HasErrors
);
2668
var result = new BoundModuleVersionId(this.Syntax, type, this.
HasErrors
);
2703
var result = new BoundModuleVersionIdString(this.Syntax, type, this.
HasErrors
);
2743
var result = new BoundSourceDocumentIndex(this.Syntax, document, type, this.
HasErrors
);
2786
var result = new BoundMethodInfo(this.Syntax, method, getMethodFromHandle, type, this.
HasErrors
);
2829
var result = new BoundFieldInfo(this.Syntax, field, getFieldFromHandle, type, this.
HasErrors
);
2883
var result = new BoundDefaultExpression(this.Syntax, targetType, constantValueOpt, type, this.
HasErrors
);
2918
var result = new BoundIsOperator(this.Syntax, operand, targetType, conversionKind, type, this.
HasErrors
);
2955
var result = new BoundAsOperator(this.Syntax, operand, targetType, operandPlaceholder, operandConversion, type, this.
HasErrors
);
2987
var result = new BoundSizeOfOperator(this.Syntax, sourceType, constantValueOpt, type, this.
HasErrors
);
3035
var result = new BoundConversion(this.Syntax, operand, conversion, isBaseConversion, @checked, explicitCastInCode, constantValueOpt, conversionGroupOpt, inConversionGroupFlags, type, this.
HasErrors
);
3068
var result = new BoundReadOnlySpanFromArray(this.Syntax, operand, conversionMethod, type, this.
HasErrors
);
3103
var result = new BoundArgList(this.Syntax, type, this.
HasErrors
);
3134
var result = new BoundArgListOperator(this.Syntax, arguments, argumentRefKindsOpt, type, this.
HasErrors
);
3173
var result = new BoundFixedLocalCollectionInitializer(this.Syntax, elementPointerType, elementPointerPlaceholder, elementPointerConversion, expression, getPinnableOpt, type, this.
HasErrors
);
3212
var result = new BoundSequencePoint(this.Syntax, statementOpt, this.
HasErrors
);
3239
var result = new BoundSequencePointWithSpan(this.Syntax, statementOpt, span, this.
HasErrors
);
3276
var result = new BoundSavePreviousSequencePoint(this.Syntax, identifier, this.
HasErrors
);
3313
var result = new BoundRestorePreviousSequencePoint(this.Syntax, identifier, this.
HasErrors
);
3344
var result = new BoundStepThroughSequencePoint(this.Syntax, span, this.
HasErrors
);
3380
var result = new BoundBlock(this.Syntax, locals, localFunctions, hasUnsafeModifier, instrumentation, statements, this.
HasErrors
);
3409
var result = new BoundScope(this.Syntax, locals, statements, this.
HasErrors
);
3440
var result = new BoundStateMachineScope(this.Syntax, fields, statement, this.
HasErrors
);
3476
var result = new BoundLocalDeclaration(this.Syntax, localSymbol, declaredTypeOpt, initializerOpt, argumentsOpt, inferredType, this.
HasErrors
);
3516
var result = new BoundMultipleLocalDeclarations(this.Syntax, localDeclarations, this.
HasErrors
);
3546
var result = new BoundUsingLocalDeclarations(this.Syntax, patternDisposeInfoOpt, awaitOpt, localDeclarations, this.
HasErrors
);
3578
var result = new BoundLocalFunctionStatement(this.Syntax, symbol, blockBody, expressionBody, this.
HasErrors
);
3609
var result = new BoundNoOpStatement(this.Syntax, flavor, this.
HasErrors
);
3642
var result = new BoundReturnStatement(this.Syntax, refKind, expressionOpt, @checked, this.
HasErrors
);
3670
var result = new BoundYieldReturnStatement(this.Syntax, expression, this.
HasErrors
);
3712
var result = new BoundThrowStatement(this.Syntax, expressionOpt, this.
HasErrors
);
3740
var result = new BoundExpressionStatement(this.Syntax, expression, this.
HasErrors
);
3777
var result = new BoundBreakStatement(this.Syntax, label, this.
HasErrors
);
3814
var result = new BoundContinueStatement(this.Syntax, label, this.
HasErrors
);
3859
var result = new BoundSwitchStatement(this.Syntax, expression, innerLocals, innerLocalFunctions, switchSections, reachabilityDecisionDag, defaultLabel, breakLabel, this.
HasErrors
);
3895
var result = new BoundSwitchDispatch(this.Syntax, expression, cases, defaultLabel, lengthBasedStringSwitchDataOpt, this.
HasErrors
);
3928
var result = new BoundIfStatement(this.Syntax, condition, consequence, alternativeOpt, this.
HasErrors
);
4008
var result = new BoundDoStatement(this.Syntax, locals, condition, body, breakLabel, continueLabel, this.
HasErrors
);
4038
var result = new BoundWhileStatement(this.Syntax, locals, condition, body, breakLabel, continueLabel, this.
HasErrors
);
4080
var result = new BoundForStatement(this.Syntax, outerLocals, initializer, innerLocals, condition, increment, body, breakLabel, continueLabel, this.
HasErrors
);
4129
var result = new BoundForEachStatement(this.Syntax, enumeratorInfoOpt, elementPlaceholder, elementConversion, iterationVariableType, iterationVariables, iterationErrorExpressionOpt, expression, deconstructionOpt, body, breakLabel, continueLabel, this.
HasErrors
);
4160
var result = new BoundForEachDeconstructStep(this.Syntax, deconstructionAssignment, targetPlaceholder, this.
HasErrors
);
4199
var result = new BoundUsingStatement(this.Syntax, locals, declarationsOpt, expressionOpt, body, awaitOpt, patternDisposeInfoOpt, this.
HasErrors
);
4233
var result = new BoundFixedStatement(this.Syntax, locals, declarations, body, this.
HasErrors
);
4264
var result = new BoundLockStatement(this.Syntax, argument, body, this.
HasErrors
);
4301
var result = new BoundTryStatement(this.Syntax, tryBlock, catchBlocks, finallyBlockOpt, finallyLabelOpt, preferFaultHandler, this.
HasErrors
);
4342
var result = new BoundCatchBlock(this.Syntax, locals, exceptionSourceOpt, exceptionTypeOpt, exceptionFilterPrologueOpt, exceptionFilterOpt, body, isSynthesizedAsyncCatchAll, this.
HasErrors
);
4373
var result = new BoundLiteral(this.Syntax, constantValueOpt, type, this.
HasErrors
);
4413
var result = new BoundUtf8String(this.Syntax, value, type, this.
HasErrors
);
4448
var result = new BoundThisReference(this.Syntax, type, this.
HasErrors
);
4483
var result = new BoundPreviousSubmissionReference(this.Syntax, type, this.
HasErrors
);
4518
var result = new BoundHostObjectMemberReference(this.Syntax, type, this.
HasErrors
);
4547
var result = new BoundBaseReference(this.Syntax, type, this.
HasErrors
);
4596
var result = new BoundLocal(this.Syntax, localSymbol, declarationKind, constantValueOpt, isNullableUnknown, type, this.
HasErrors
);
4641
var result = new BoundPseudoVariable(this.Syntax, localSymbol, emitExpressions, type, this.
HasErrors
);
4674
var result = new BoundRangeVariable(this.Syntax, rangeVariableSymbol, value, type, this.
HasErrors
);
4714
var result = new BoundParameter(this.Syntax, parameterSymbol, type, this.
HasErrors
);
4751
var result = new BoundLabelStatement(this.Syntax, label, this.
HasErrors
);
4783
var result = new BoundGotoStatement(this.Syntax, label, caseExpressionOpt, labelExpressionOpt, this.
HasErrors
);
4814
var result = new BoundLabeledStatement(this.Syntax, label, body, this.
HasErrors
);
4851
var result = new BoundLabel(this.Syntax, label, type, this.
HasErrors
);
4888
var result = new BoundStatementList(this.Syntax, statements, this.
HasErrors
);
4921
var result = new BoundConditionalGoto(this.Syntax, condition, jumpIfTrue, label, this.
HasErrors
);
4986
var result = new BoundSwitchExpressionArm(this.Syntax, locals, pattern, hasUnionMatching, whenClause, value, label, this.
HasErrors
);
5014
var result = new BoundUnconvertedSwitchExpression(this.Syntax, expression, switchArms, reachabilityDecisionDag, defaultLabel, reportedNotExhaustive, type, this.
HasErrors
);
5048
var result = new BoundConvertedSwitchExpression(this.Syntax, naturalTypeOpt, wasTargetTyped, expression, switchArms, reachabilityDecisionDag, defaultLabel, reportedNotExhaustive, type, this.
HasErrors
);
5078
var result = new BoundDecisionDag(this.Syntax, rootNode, suitableForLowering, this.
HasErrors
);
5123
var result = new BoundEvaluationDecisionDagNode(this.Syntax, evaluation, next, this.
HasErrors
);
5157
var result = new BoundTestDecisionDagNode(this.Syntax, test, whenTrue, whenFalse, this.
HasErrors
);
5192
var result = new BoundWhenDecisionDagNode(this.Syntax, bindings, whenExpression, whenTrue, whenFalse, this.
HasErrors
);
5229
var result = new BoundLeafDecisionDagNode(this.Syntax, label, this.
HasErrors
);
5275
var result = new BoundDagTemp(this.Syntax, type, source, index, this.
HasErrors
);
5304
var result = new BoundDagTypeTest(this.Syntax, type, input, this.
HasErrors
);
5332
var result = new BoundDagNonNullTest(this.Syntax, isExplicitTest, input, this.
HasErrors
);
5358
var result = new BoundDagExplicitNullTest(this.Syntax, input, this.
HasErrors
);
5387
var result = new BoundDagValueTest(this.Syntax, value, input, this.
HasErrors
);
5418
var result = new BoundDagRelationalTest(this.Syntax, operatorKind, value, input, this.
HasErrors
);
5459
var result = new BoundDagDeconstructEvaluation(this.Syntax, deconstructMethod, input, this.
HasErrors
);
5488
var result = new BoundDagTypeEvaluation(this.Syntax, type, input, this.
HasErrors
);
5517
var result = new BoundDagFieldEvaluation(this.Syntax, field, input, this.
HasErrors
);
5548
var result = new BoundDagPropertyEvaluation(this.Syntax, property, isLengthOrCount, input, this.
HasErrors
);
5579
var result = new BoundDagIndexEvaluation(this.Syntax, property, index, input, this.
HasErrors
);
5626
var result = new BoundDagIndexerEvaluation(this.Syntax, indexerType, lengthTemp, index, indexerAccess, receiverPlaceholder, argumentPlaceholder, input, this.
HasErrors
);
5675
var result = new BoundDagSliceEvaluation(this.Syntax, sliceType, lengthTemp, startIndex, endIndex, indexerAccess, receiverPlaceholder, argumentPlaceholder, input, this.
HasErrors
);
5704
var result = new BoundDagAssignmentEvaluation(this.Syntax, target, input, this.
HasErrors
);
5730
var result = new BoundDagPassThroughEvaluation(this.Syntax, input, this.
HasErrors
);
5762
var result = new BoundSwitchSection(this.Syntax, locals, switchLabels, statements, this.
HasErrors
);
5797
var result = new BoundSwitchLabel(this.Syntax, label, pattern, hasUnionMatching, whenClause, this.
HasErrors
);
5839
var result = new BoundSequencePointExpression(this.Syntax, expression, type, this.
HasErrors
);
5875
var result = new BoundSequence(this.Syntax, locals, sideEffects, value, type, this.
HasErrors
);
5911
var result = new BoundSpillSequence(this.Syntax, locals, sideEffects, value, type, this.
HasErrors
);
5950
var result = new BoundDynamicMemberAccess(this.Syntax, receiver, typeArgumentsOpt, name, invoked, indexed, type, this.
HasErrors
);
6003
var result = new BoundDynamicInvocation(this.Syntax, argumentNamesOpt, argumentRefKindsOpt, applicableMethods, expression, arguments, type, this.
HasErrors
);
6036
var result = new BoundConditionalAccess(this.Syntax, receiver, accessExpression, type, this.
HasErrors
);
6077
var result = new BoundLoweredConditionalAccess(this.Syntax, receiver, hasValueMethodOpt, whenNotNull, whenNullOpt, id, forceCopyOfNullableValueType, type, this.
HasErrors
);
6115
var result = new BoundConditionalReceiver(this.Syntax, id, type, this.
HasErrors
);
6148
var result = new BoundComplexConditionalReceiver(this.Syntax, valueTypeReceiver, referenceTypeReceiver, type, this.
HasErrors
);
6189
var result = new BoundMethodGroup(this.Syntax, typeArgumentsOpt, name, methods, lookupSymbolOpt, lookupError, flags, functionType, receiverOpt, resultKind, this.
HasErrors
);
6217
var result = new BoundPropertyGroup(this.Syntax, properties, receiverOpt, resultKind, this.
HasErrors
);
6276
var result = new BoundCall(this.Syntax, receiverOpt, initialBindingReceiverIsSubjectToCloning, method, arguments, argumentNamesOpt, argumentRefKindsOpt, isDelegateCall, expanded, invokedAsExtensionMethod, argsToParamsOpt, defaultArguments, resultKind, originalMethodsOpt, type, this.
HasErrors
);
6315
var result = new BoundEventAssignmentOperator(this.Syntax, @event, isAddition, isDynamic, receiverOpt, argument, type, this.
HasErrors
);
6360
var result = new BoundAttribute(this.Syntax, constructor, constructorArguments, constructorArgumentNamesOpt, constructorArgumentsToParamsOpt, constructorExpanded, constructorDefaultArguments, namedArguments, resultKind, type, this.
HasErrors
);
6398
var result = new BoundUnconvertedObjectCreationExpression(this.Syntax, arguments, argumentNamesOpt, argumentRefKindsOpt, initializerOpt, binder, this.
HasErrors
);
6470
var result = new BoundObjectCreationExpression(this.Syntax, constructor, constructorsGroup, arguments, argumentNamesOpt, argumentRefKindsOpt, expanded, argsToParamsOpt, defaultArguments, constantValueOpt, initializerExpressionOpt, wasTargetTyped, type, this.
HasErrors
);
6517
var result = new BoundUnconvertedCollectionExpression(this.Syntax, withElement, elements, this.
HasErrors
);
6549
var result = new BoundUnconvertedWithElement(this.Syntax, arguments, argumentNamesOpt, argumentRefKindsOpt, this.
HasErrors
);
6598
var result = new BoundCollectionExpression(this.Syntax, collectionTypeKind, placeholder, collectionCreation, collectionBuilderMethod, collectionBuilderElementsPlaceholder, wasTargetTyped, hasWithElement, unconvertedCollectionExpression, elements, type, this.
HasErrors
);
6626
var result = new BoundCollectionExpressionSpreadExpressionPlaceholder(this.Syntax, type, this.
HasErrors
);
6666
var result = new BoundCollectionExpressionSpreadElement(this.Syntax, expression, expressionPlaceholder, conversion, enumeratorInfoOpt, lengthOrCount, elementPlaceholder, iteratorBody, this.
HasErrors
);
6711
var result = new BoundTupleLiteral(this.Syntax, arguments, argumentNamesOpt, inferredNamesOpt, type, this.
HasErrors
);
6741
var result = new BoundConvertedTupleLiteral(this.Syntax, sourceTuple, wasTargetTyped, arguments, argumentNamesOpt, inferredNamesOpt, type, this.
HasErrors
);
6784
var result = new BoundDynamicObjectCreationExpression(this.Syntax, name, arguments, argumentNamesOpt, argumentRefKindsOpt, initializerExpressionOpt, applicableMethods, wasTargetTyped, type, this.
HasErrors
);
6816
var result = new BoundNoPiaObjectCreationExpression(this.Syntax, guidString, initializerExpressionOpt, wasTargetTyped, type, this.
HasErrors
);
6863
var result = new BoundObjectInitializerExpression(this.Syntax, placeholder, initializers, type, this.
HasErrors
);
6912
var result = new BoundObjectInitializerMember(this.Syntax, memberSymbol, arguments, argumentNamesOpt, argumentRefKindsOpt, expanded, argsToParamsOpt, defaultArguments, resultKind, accessorKind, receiverType, type, this.
HasErrors
);
6957
var result = new BoundDynamicObjectInitializerMember(this.Syntax, memberName, receiverType, type, this.
HasErrors
);
6985
var result = new BoundCollectionInitializerExpression(this.Syntax, placeholder, initializers, type, this.
HasErrors
);
7030
var result = new BoundCollectionElementInitializer(this.Syntax, addMethod, arguments, implicitReceiverOpt, expanded, argsToParamsOpt, defaultArguments, invokedAsExtensionMethod, resultKind, type, this.
HasErrors
);
7062
var result = new BoundDynamicCollectionElementInitializer(this.Syntax, applicableMethods, expression, arguments, type, this.
HasErrors
);
7097
var result = new BoundImplicitReceiver(this.Syntax, type, this.
HasErrors
);
7133
var result = new BoundAnonymousObjectCreationExpression(this.Syntax, constructor, arguments, declarations, type, this.
HasErrors
);
7173
var result = new BoundAnonymousPropertyDeclaration(this.Syntax, property, type, this.
HasErrors
);
7203
var result = new BoundNewT(this.Syntax, initializerExpressionOpt, wasTargetTyped, type, this.
HasErrors
);
7239
var result = new BoundDelegateCreationExpression(this.Syntax, argument, methodOpt, isExtensionMethod, wasTargetTyped, type, this.
HasErrors
);
7271
var result = new BoundArrayCreation(this.Syntax, bounds, initializerOpt, type, this.
HasErrors
);
7302
var result = new BoundArrayInitialization(this.Syntax, isInferred, initializers, this.
HasErrors
);
7348
var result = new BoundStackAllocArrayCreation(this.Syntax, elementType, count, initializerOpt, type, this.
HasErrors
);
7377
var result = new BoundConvertedStackAllocExpression(this.Syntax, elementType, count, initializerOpt, type, this.
HasErrors
);
7417
var result = new BoundFieldAccess(this.Syntax, receiverOpt, fieldSymbol, constantValueOpt, resultKind, isByValue, isDeclaration, type, this.
HasErrors
);
7457
var result = new BoundHoistedFieldAccess(this.Syntax, fieldSymbol, type, this.
HasErrors
);
7495
var result = new BoundPropertyAccess(this.Syntax, receiverOpt, initialBindingReceiverIsSubjectToCloning, propertySymbol, autoPropertyAccessorKind, resultKind, type, this.
HasErrors
);
7531
var result = new BoundEventAccess(this.Syntax, receiverOpt, eventSymbol, isUsableAsField, resultKind, type, this.
HasErrors
);
7582
var result = new BoundIndexerAccess(this.Syntax, receiverOpt, initialBindingReceiverIsSubjectToCloning, indexer, arguments, argumentNamesOpt, argumentRefKindsOpt, expanded, accessorKind, argsToParamsOpt, defaultArguments, originalIndexersOpt, type, this.
HasErrors
);
7631
var result = new BoundImplicitIndexerAccess(this.Syntax, receiver, argument, lengthOrCountAccess, receiverPlaceholder, indexerOrSliceAccess, argumentPlaceholders, type, this.
HasErrors
);
7672
var result = new BoundInlineArrayAccess(this.Syntax, expression, argument, isValue, getItemOrSliceHelper, type, this.
HasErrors
);
7712
var result = new BoundDynamicIndexerAccess(this.Syntax, receiver, arguments, argumentNamesOpt, argumentRefKindsOpt, applicableIndexers, type, this.
HasErrors
);
7752
var result = new BoundLambda(this.Syntax, unboundLambda, symbol, body, diagnostics, binder, type, this.
HasErrors
);
7796
var result = new UnboundLambda(this.Syntax, data, functionType, withDependencies, this.
HasErrors
);
7837
var result = new BoundQueryClause(this.Syntax, value, definedSymbol, operation, cast, binder, unoptimizedForm, type, this.
HasErrors
);
7863
var result = new BoundTypeOrInstanceInitializers(this.Syntax, statements, this.
HasErrors
);
7900
var result = new BoundNameOfOperator(this.Syntax, argument, constantValueOpt, type, this.
HasErrors
);
7942
var result = new BoundUnconvertedInterpolatedString(this.Syntax, parts, constantValueOpt, type, this.
HasErrors
);
7970
var result = new BoundInterpolatedString(this.Syntax, interpolationData, parts, constantValueOpt, type, this.
HasErrors
);
7998
var result = new BoundInterpolatedStringHandlerPlaceholder(this.Syntax, type, this.
HasErrors
);
8036
var result = new BoundInterpolatedStringArgumentPlaceholder(this.Syntax, argumentIndex, type, this.
HasErrors
);
8071
var result = new BoundStringInsert(this.Syntax, value, alignment, format, isInterpolatedStringHandlerAppendCall, this.
HasErrors
);
8115
var result = new BoundIsPatternExpression(this.Syntax, expression, pattern, hasUnionMatching, isNegated, reachabilityDecisionDag, whenTrueLabel, whenFalseLabel, type, this.
HasErrors
);
8186
var result = new BoundConstantPattern(this.Syntax, value, constantValue, isUnionMatching, inputType, narrowedType, this.
HasErrors
);
8228
var result = new BoundPatternWithUnionMatching(this.Syntax, unionMatchingInputType, leftOfPendingConjunction, valueProperty, valuePattern, inputType, narrowedType, this.
HasErrors
);
8268
var result = new BoundDiscardPattern(this.Syntax, inputType, narrowedType, this.
HasErrors
);
8323
var result = new BoundDeclarationPattern(this.Syntax, declaredType, isVar, variable, variableAccess, isUnionMatching, inputType, narrowedType, this.
HasErrors
);
8364
var result = new BoundRecursivePattern(this.Syntax, declaredType, deconstructMethod, deconstruction, properties, isExplicitNotNullTest, variable, variableAccess, isUnionMatching, inputType, narrowedType, this.
HasErrors
);
8408
var result = new BoundListPattern(this.Syntax, subpatterns, hasSlice, lengthAccess, indexerAccess, receiverPlaceholder, argumentPlaceholder, variable, variableAccess, isUnionMatching, inputType, narrowedType, this.
HasErrors
);
8447
var result = new BoundSlicePattern(this.Syntax, pattern, indexerAccess, receiverPlaceholder, argumentPlaceholder, inputType, narrowedType, this.
HasErrors
);
8489
var result = new BoundITuplePattern(this.Syntax, getLengthMethod, getItemMethod, subpatterns, isUnionMatching, inputType, narrowedType, this.
HasErrors
);
8535
var result = new BoundPositionalSubpattern(this.Syntax, symbol, pattern, this.
HasErrors
);
8565
var result = new BoundPropertySubpattern(this.Syntax, member, isLengthOrCount, pattern, this.
HasErrors
);
8597
var result = new BoundPropertySubpatternMember(this.Syntax, receiver, symbol, type, this.
HasErrors
);
8635
var result = new BoundTypePattern(this.Syntax, declaredType, isExplicitNotNullTest, isUnionMatching, inputType, narrowedType, this.
HasErrors
);
8674
var result = new BoundBinaryPattern(this.Syntax, disjunction, left, right, inputType, narrowedType, this.
HasErrors
);
8708
var result = new BoundNegatedPattern(this.Syntax, negated, inputType, narrowedType, this.
HasErrors
);
8749
var result = new BoundRelationalPattern(this.Syntax, relation, value, constantValue, isUnionMatching, inputType, narrowedType, this.
HasErrors
);
8784
var result = new BoundDiscardExpression(this.Syntax, nullableAnnotation, isInferred, type, this.
HasErrors
);
8812
var result = new BoundThrowExpression(this.Syntax, expression, type, this.
HasErrors
);
8855
var result = new OutVariablePendingInference(this.Syntax, variableSymbol, receiverOpt, this.
HasErrors
);
8881
var result = new DeconstructionVariablePendingInference(this.Syntax, variableSymbol, receiverOpt, this.
HasErrors
);
8916
var result = new OutDeconstructVarPendingInference(this.Syntax, variableSymbol, isDiscardExpression, this.
HasErrors
);
8952
var result = new BoundNonConstructorMethodBody(this.Syntax, blockBody, expressionBody, this.
HasErrors
);
8982
var result = new BoundConstructorMethodBody(this.Syntax, locals, initializer, blockBody, expressionBody, this.
HasErrors
);
9013
var result = new BoundExpressionWithNullability(this.Syntax, expression, nullableAnnotation, type, this.
HasErrors
);
9038
var result = new BoundValueForNullableAnalysis(this.Syntax, originalExpression, type, this.
HasErrors
);
9073
var result = new BoundWithExpression(this.Syntax, receiver, cloneMethod, initializerExpression, type, this.
HasErrors
);
15485
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
15493
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
15501
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
15507
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
15514
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
15522
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
15531
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
15538
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
15545
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
15552
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
15560
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
15567
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
15576
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
15583
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
15590
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
15597
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
15604
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
15611
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
15619
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
15627
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
15637
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
15643
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
15649
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
15660
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
15669
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
15678
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
15692
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
15709
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
15718
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
15726
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
15735
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
15744
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
15755
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
15766
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
15775
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
15783
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
15792
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
15801
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
15811
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
15823
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
15834
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
15852
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
15868
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
15878
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
15888
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
15901
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
15910
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
15922
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
15936
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
15945
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
15953
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
15961
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
15973
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
15983
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
15992
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
16000
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
16008
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
16017
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
16026
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
16033
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
16040
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
16048
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
16055
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
16062
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
16069
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
16076
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
16084
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
16093
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
16102
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
16109
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
16118
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
16128
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
16139
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
16148
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
16163
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
16172
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
16179
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
16188
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
16200
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
16206
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
16213
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
16219
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
16225
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
16231
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
16241
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
16248
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
16255
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
16265
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
16271
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
16279
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
16287
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
16293
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
16301
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
16307
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
16315
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
16321
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
16327
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
16333
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
16345
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
16354
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
16362
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
16372
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
16382
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
16395
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
16411
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
16418
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
16429
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
16437
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
16444
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
16454
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
16466
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
16474
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
16482
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
16489
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
16496
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
16503
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
16510
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
16521
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
16530
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
16539
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
16547
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
16553
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
16561
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
16568
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
16576
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
16582
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
16590
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
16601
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
16613
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
16627
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
16634
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
16641
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
16649
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
16658
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
16664
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
16672
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
16679
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
16686
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
16692
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
16699
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
16707
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
16714
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
16721
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
16728
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
16736
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
16744
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
16756
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
16769
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
16776
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
16782
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
16790
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
16799
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
16807
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
16817
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
16827
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
16839
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
16851
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
16860
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
16873
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
16881
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
16890
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
16906
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
16916
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
16936
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
16948
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
16963
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
16975
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
16993
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
17002
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
17010
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
17026
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
17033
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
17045
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
17055
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
17067
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
17081
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
17091
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
17100
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
17117
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
17126
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
17135
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
17150
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
17160
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
17167
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
17177
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
17185
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
17194
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
17205
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
17214
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
17223
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
17233
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
17243
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
17256
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
17264
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
17276
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
17287
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
17305
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
17318
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
17329
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
17341
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
17353
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
17363
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
17376
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
17382
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
17391
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
17400
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
17410
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
17417
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
17425
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
17436
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
17450
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
17460
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
17471
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
17478
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
17490
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
17505
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
17521
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
17532
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
17543
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
17550
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
17558
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
17566
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
17576
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
17586
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
17594
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
17605
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
17614
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
17622
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
17631
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
17640
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
17649
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
17656
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
17665
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
17674
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
17682
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
17692
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
Lowering\ClosureConversion\ClosureConversion.cs (2)
839
return new BoundParameter(node.Syntax, replacementParameter, node.
HasErrors
);
1333
return new BoundBlock(node.Syntax, newLocals.ToImmutableAndFree(), newStatements.ToImmutableAndFree(), node.
HasErrors
);
Lowering\Instrumentation\DebugInfoInjector.cs (1)
367
original.
HasErrors
);
Lowering\LocalRewriter\LocalRewriter.cs (7)
160
if (localRewriter._needsSpilling && !loweredStatement.
HasErrors
)
214
Debug.Assert(!node.
HasErrors
, "nodes with errors should not be lowered");
232
Debug.Assert(!node.
HasErrors
, "nodes with errors should not be lowered");
244
Debug.Assert(!node.
HasErrors
, "nodes with errors should not be lowered");
285
Debug.Assert(visited == null || visited.
HasErrors
|| ReferenceEquals(visited.Type, node.Type) ||
522
Debug.Assert(value.Type is { } && (value.Type.Equals(placeholder.Type, TypeCompareKind.AllIgnoreOptions) || value.
HasErrors
));
824
return new BoundStatementList(node.Syntax, rewrittenStatements, node.
HasErrors
);
Lowering\LocalRewriter\LocalRewriter_Block.cs (1)
58
return new BoundBlock(node.Syntax, locals, node.LocalFunctions, node.HasUnsafeModifier, instrumentation, builder.ToImmutableAndFree(), node.
HasErrors
);
Lowering\LocalRewriter\LocalRewriter_BreakStatement.cs (1)
15
BoundStatement result = new BoundGotoStatement(node.Syntax, node.Label, node.
HasErrors
);
Lowering\LocalRewriter\LocalRewriter_ContinueStatement.cs (1)
15
BoundStatement result = new BoundGotoStatement(node.Syntax, node.Label, node.
HasErrors
);
Lowering\LocalRewriter\LocalRewriter_Conversion.cs (1)
1095
hasErrors: conversion.
HasErrors
);
Lowering\LocalRewriter\LocalRewriter_DeconstructionAssignmentOperator.cs (1)
101
if (!returnValue!.
HasErrors
)
Lowering\LocalRewriter\LocalRewriter_DoStatement.cs (2)
57
return BoundStatementList.Synthesized(syntax, node.
HasErrors
,
65
return BoundStatementList.Synthesized(syntax, node.
HasErrors
,
Lowering\LocalRewriter\LocalRewriter_ExpressionStatement.cs (1)
43
if (expression.
HasErrors
)
Lowering\LocalRewriter\LocalRewriter_ForEachStatement.cs (4)
37
if (node.
HasErrors
)
699
hasErrors: node.
HasErrors
);
995
hasErrors: node.
HasErrors
);
1203
hasErrors: node.
HasErrors
);
Lowering\LocalRewriter\LocalRewriter_ForStatement.cs (2)
189
node.ContinueLabel, node.
HasErrors
);
271
return new BoundBlock(syntax, node.OuterLocals, statements, node.
HasErrors
);
Lowering\LocalRewriter\LocalRewriter_IfStatement.cs (1)
116
return new BoundStatementList(node.Syntax, builder.ToImmutableAndFree(), node.
HasErrors
);
Lowering\LocalRewriter\LocalRewriter_LocalDeclaration.cs (1)
16
return RewriteLocalDeclaration(node, node.Syntax, node.LocalSymbol, VisitExpression(node.InitializerOpt), node.
HasErrors
);
Lowering\LocalRewriter\LocalRewriter_LockStatement.cs (1)
166
node.
HasErrors
);
Lowering\LocalRewriter\LocalRewriter_MultipleLocalDeclarations.cs (1)
45
return BoundStatementList.Synthesized(node.Syntax, node.
HasErrors
, inits.ToImmutableAndFree());
Lowering\LocalRewriter\LocalRewriter_NullCoalescingOperator.cs (1)
167
Debug.Assert(convertedLeft.
HasErrors
|| convertedLeft.Type!.Equals(rewrittenResultType, TypeCompareKind.IgnoreDynamicAndTupleNames | TypeCompareKind.IgnoreNullableModifiersForReferenceTypes));
Lowering\LocalRewriter\LocalRewriter_ObjectCreationExpression.cs (6)
23
if (node.InitializerExpressionOpt == null || node.InitializerExpressionOpt.
HasErrors
)
123
if (node.InitializerExpressionOpt == null || node.InitializerExpressionOpt.
HasErrors
)
249
if (initializerExpressionOpt != null && !initializerExpressionOpt.
HasErrors
)
267
Debug.Assert(initializerExpression != null && !initializerExpression.
HasErrors
);
320
if (node.InitializerExpressionOpt == null || node.InitializerExpressionOpt.
HasErrors
)
433
if (node.InitializerExpressionOpt == null || node.InitializerExpressionOpt.
HasErrors
)
Lowering\LocalRewriter\LocalRewriter_TupleBinaryOperator.cs (7)
80
hasErrors: conversion.
HasErrors
);
86
ImmutableArray<bool>.Empty, conversion.Type, conversion.
HasErrors
);
124
constantValueOpt: null, destElementTypes[i].Type, boundConversion.
HasErrors
);
130
ImmutableArray<bool>.Empty, expr.Type, expr.
HasErrors
);
166
ImmutableArray<bool>.Empty, tuple.Type, tuple.
HasErrors
);
222
type: eType, hasErrors: expr.
HasErrors
);
469
hasErrors: expr.
HasErrors
).WithSuppression(expr.IsSuppressed);
Lowering\LocalRewriter\LocalRewriter_WhileStatement.cs (1)
38
node.
HasErrors
);
Lowering\LocalRewriter\PipelinePhaseValidator.cs (1)
97
if (node is null || node.
HasErrors
)
Lowering\StateMachineRewriter\StateMachineRewriter.cs (1)
95
if (this.body.
HasErrors
)
Operations\CSharpOperationFactory.cs (1)
2518
{
HasErrors
: true } => "",
Symbols\Source\SourceComplexParameterSymbol.cs (1)
392
if (valueBeforeConversion.
HasErrors
)