1 write to HasErrors
Microsoft.CodeAnalysis.CSharp (1)
BoundTree\BoundNode.cs (1)
399
clone.
HasErrors
= true;
603 references to HasErrors
Microsoft.CodeAnalysis.CSharp (603)
Binder\Binder_Expressions.cs (9)
294
bool hasErrors = expression.
HasErrors
;
307
bool hasErrors = op.
HasErrors
;
345
sourceTuple.
HasErrors
).WithSuppression(sourceTuple.IsSuppressed);
2905
!underlyingExpr.
HasErrors
&& !bag.HasAnyErrors())
3904
hasErrors || interpolatedString.
HasErrors
);
6395
if (!result.
HasErrors
&&
6466
if (boundCall.
HasErrors
&& !boundCall.OriginalMethodsOpt.IsDefault)
7985
if (!boundMethodGroup.
HasErrors
&& typeArgumentsSyntax.Any(SyntaxKind.OmittedTypeArgument))
11100
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 (5)
205
if (finalConversion.
HasErrors
)
212
Debug.Assert(finalConversion.
HasErrors
|| (object)finalConversion == finalPlaceholder);
2344
bool hasErrors = resultConversion.
HasErrors
;
4348
bool hasErrors = trueExpr.
HasErrors
| falseExpr.
HasErrors
;
Binder\Binder_Patterns.cs (4)
39
hasErrors |= pattern.
HasErrors
;
398
return !hasErrors && !lengthAccess.
HasErrors
&& !indexerAccess.
HasErrors
;
556
if (!convertedExpression.
HasErrors
&& !hasErrors)
Binder\Binder_Statements.cs (2)
1442
if (!boundLeft.
HasErrors
)
3041
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)
287
Debug.Assert(pattern.
HasErrors
|| pattern.InputType.Equals(input.Type, TypeCompareKind.AllIgnoreOptions) || pattern.InputType.IsErrorType());
500
Debug.Assert(constant.Value.Type is not null || constant.
HasErrors
);
522
RoslynDebug.Assert(input.Type.IsErrorType() || recursive.
HasErrors
|| recursive.InputType.IsErrorType() || input.Type.Equals(recursive.InputType, TypeCompareKind.AllIgnoreOptions));
697
Debug.Assert(bin.
HasErrors
|| output.Type.Equals(bin.NarrowedType, TypeCompareKind.AllIgnoreOptions));
721
tests.Add(new Tests.One(new BoundDagRelationalTest(rel.Syntax, rel.Relation, rel.ConstantValue, output, rel.
HasErrors
)));
958
state.SelectedTest = new BoundDagNonNullTest(t.Syntax, isExplicitTest: true, t.Input, t.
HasErrors
);
Binder\DecisionDagBuilder_ListPatterns.cs (2)
15
Debug.Assert(input.Type.IsErrorType() || list.
HasErrors
|| list.InputType.IsErrorType() ||
26
if (list.
HasErrors
)
Binder\ForEachLoopBinder.cs (2)
431
hasErrors = hasErrors || boundIterationVariableType.
HasErrors
|| iterationVariableType.Type.IsErrorType();
778
if (string.IsNullOrEmpty(collectionExprType.Name) && collectionExpr.
HasErrors
)
Binder\RefSafetyAnalysis.cs (4)
681
if (!node.
HasErrors
)
779
if (!node.
HasErrors
)
864
if (!node.
HasErrors
)
887
if (!node.
HasErrors
)
Binder\Semantics\OverloadResolution\OverloadResolutionResult.cs (1)
654
if (receiverOpt?.
HasErrors
!= true)
Binder\SwitchBinder_Patterns.cs (6)
97
if (!label.
HasErrors
&& isSubsumed(label, reachableLabels) && label.Syntax.Kind() != SyntaxKind.DefaultSwitchLabel)
114
else if (!label.Pattern.
HasErrors
&& !anyPreviousErrors)
127
anyPreviousErrors |= label.
HasErrors
;
245
return new BoundSwitchLabel(node, label, pattern, null, pattern.
HasErrors
);
251
bool hasErrors = pattern.
HasErrors
;
288
if (pattern is BoundConstantPattern {
HasErrors
: false } && IsUnderscore(expression))
Binder\SwitchExpressionArmBinder.cs (1)
48
return new BoundSwitchExpressionArm(node, locals, pattern, whenClause, armResult, label, hasErrors | pattern.
HasErrors
);
Binder\SwitchExpressionBinder.cs (1)
68
hasErrors |= arm.
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\OutDeconstructVarPendingInference.cs (1)
18
Placeholder = new BoundDeconstructValuePlaceholder(this.Syntax, variableSymbol: VariableSymbol, isDiscardExpression: IsDiscardExpression, type.Type, hasErrors: this.
HasErrors
|| !success);
BoundTree\UnboundLambda.cs (2)
429
var lambda = new UnboundLambda(Syntax, data, FunctionType, WithDependencies, nullableState,
HasErrors
);
442
var lambda = new UnboundLambda(Syntax, data, FunctionType, WithDependencies, _nullableState,
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 (8)
258
if (body.
HasErrors
|| diagnostics.HasAnyErrors())
747
if (!loweredBody.
HasErrors
)
1201
hasErrors = hasErrors || (hasBody && loweredBodyOpt.
HasErrors
) || diagsForCurrentMethod.HasAnyErrors();
1382
if (body.
HasErrors
)
1407
if (loweredBody.
HasErrors
)
1427
if (loweredBody.
HasErrors
)
1453
if (bodyWithoutLambdas.
HasErrors
)
1461
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 (14)
2069
Debug.Assert(node.
HasErrors
||
3906
Debug.Assert(node.
HasErrors
);
4620
var arrayType = VisitArrayInitialization(node.Type, initialization, node.
HasErrors
);
5977
else if (!node.
HasErrors
)
6371
if (node.
HasErrors
6938
if (node is BoundCall {
HasErrors
: true, ArgumentNamesOpt.IsDefaultOrEmpty: false, ArgsToParamsOpt.IsDefault: true } &&
6948
_disableDiagnostics |= node.
HasErrors
|| defaultArguments[i];
6983
if (!node.
HasErrors
&& !parametersOpt.IsDefault)
9159
if (!conversionOperand.
HasErrors
&& !targetType.IsErrorType())
10170
if (node.
HasErrors
)
10554
if (!node.
HasErrors
)
10899
Debug.Assert(node.
HasErrors
);
11493
if (node.Type.IsValueType || node.
HasErrors
|| awaitableInfo.GetResult is null)
12005
var type = VisitArrayInitialization(node.Type, initialization, node.
HasErrors
);
FlowAnalysis\NullableWalker_Patterns.cs (1)
1045
=> !arm.Pattern.
HasErrors
&& labelStateMap.TryGetValue(arm.Label, out var labelState) ? labelState.state : UnreachableState();
Generated\BoundNodes.xml.Generated.cs (461)
329
var result = new BoundFieldEqualsValue(this.Syntax, field, locals, value, this.
HasErrors
);
359
var result = new BoundPropertyEqualsValue(this.Syntax, property, locals, value, this.
HasErrors
);
389
var result = new BoundParameterEqualsValue(this.Syntax, parameter, locals, value, this.
HasErrors
);
417
var result = new BoundGlobalStatementInitializer(this.Syntax, statement, this.
HasErrors
);
490
var result = new BoundValuePlaceholder(this.Syntax, type, this.
HasErrors
);
520
var result = new BoundCapturedReceiverPlaceholder(this.Syntax, receiver, localScopeDepth, type, this.
HasErrors
);
561
var result = new BoundDeconstructValuePlaceholder(this.Syntax, variableSymbol, isDiscardExpression, type, this.
HasErrors
);
596
var result = new BoundTupleOperandPlaceholder(this.Syntax, type, this.
HasErrors
);
625
var result = new BoundAwaitableValuePlaceholder(this.Syntax, type, this.
HasErrors
);
660
var result = new BoundDisposableValuePlaceholder(this.Syntax, type, this.
HasErrors
);
698
var result = new BoundObjectOrCollectionValuePlaceholder(this.Syntax, isNewInstance, type, this.
HasErrors
);
733
var result = new BoundImplicitIndexerValuePlaceholder(this.Syntax, type, this.
HasErrors
);
771
var result = new BoundImplicitIndexerReceiverPlaceholder(this.Syntax, isEquivalentToThisReference, type, this.
HasErrors
);
806
var result = new BoundListPatternReceiverPlaceholder(this.Syntax, type, this.
HasErrors
);
841
var result = new BoundListPatternIndexPlaceholder(this.Syntax, type, this.
HasErrors
);
876
var result = new BoundSlicePatternReceiverPlaceholder(this.Syntax, type, this.
HasErrors
);
911
var result = new BoundSlicePatternRangePlaceholder(this.Syntax, type, this.
HasErrors
);
942
var result = new BoundDup(this.Syntax, refKind, type, this.
HasErrors
);
970
var result = new BoundPassByCopy(this.Syntax, expression, type, this.
HasErrors
);
1003
var result = new BoundBadExpression(this.Syntax, resultKind, symbols, childBoundNodes, type, this.
HasErrors
);
1031
var result = new BoundBadStatement(this.Syntax, childBoundNodes, this.
HasErrors
);
1059
var result = new BoundExtractedFinallyBlock(this.Syntax, finallyBlock, this.
HasErrors
);
1094
var result = new BoundTypeExpression(this.Syntax, aliasOpt, boundContainingTypeOpt, boundDimensionsOpt, typeWithAnnotations, type, this.
HasErrors
);
1132
var result = new BoundTypeOrValueExpression(this.Syntax, data, type, this.
HasErrors
);
1173
var result = new BoundNamespaceExpression(this.Syntax, namespaceSymbol, aliasOpt, this.
HasErrors
);
1215
var result = new BoundUnaryOperator(this.Syntax, operatorKind, operand, constantValueOpt, methodOpt, constrainedToTypeOpt, resultKind, originalUserDefinedOperatorsOpt, type, this.
HasErrors
);
1263
var result = new BoundIncrementOperator(this.Syntax, operatorKind, operand, methodOpt, constrainedToTypeOpt, operandPlaceholder, operandConversion, resultPlaceholder, resultConversion, resultKind, originalUserDefinedOperatorsOpt, type, this.
HasErrors
);
1295
var result = new BoundAddressOfOperator(this.Syntax, operand, isManaged, type, this.
HasErrors
);
1324
var result = new BoundUnconvertedAddressOfOperator(this.Syntax, operand, this.
HasErrors
);
1367
var result = new BoundFunctionPointerLoad(this.Syntax, targetMethod, constrainedToTypeOpt, type, this.
HasErrors
);
1399
var result = new BoundPointerIndirectionOperator(this.Syntax, operand, refersToLocation, type, this.
HasErrors
);
1436
var result = new BoundPointerElementAccess(this.Syntax, expression, index, @checked, refersToLocation, type, this.
HasErrors
);
1473
var result = new BoundFunctionPointerInvocation(this.Syntax, invokedExpression, arguments, argumentRefKindsOpt, resultKind, type, this.
HasErrors
);
1505
var result = new BoundRefTypeOperator(this.Syntax, operand, getTypeFromHandle, type, this.
HasErrors
);
1535
var result = new BoundMakeRefOperator(this.Syntax, operand, type, this.
HasErrors
);
1567
var result = new BoundRefValueOperator(this.Syntax, nullableAnnotation, operand, type, this.
HasErrors
);
1599
var result = new BoundFromEndIndexExpression(this.Syntax, operand, methodOpt, type, this.
HasErrors
);
1632
var result = new BoundRangeExpression(this.Syntax, leftOperandOpt, rightOperandOpt, methodOpt, type, this.
HasErrors
);
1685
var result = new BoundBinaryOperator(this.Syntax, operatorKind, data, resultKind, left, right, type, this.
HasErrors
);
1723
var result = new BoundTupleBinaryOperator(this.Syntax, left, right, operatorKind, operators, type, this.
HasErrors
);
1768
var result = new BoundUserDefinedConditionalLogicalOperator(this.Syntax, operatorKind, logicalOperator, trueOperator, falseOperator, constrainedToTypeOpt, resultKind, originalUserDefinedOperatorsOpt, left, right, type, this.
HasErrors
);
1815
var result = new BoundCompoundAssignmentOperator(this.Syntax, @operator, left, right, leftPlaceholder, leftConversion, finalPlaceholder, finalConversion, resultKind, originalUserDefinedOperatorsOpt, type, this.
HasErrors
);
1849
var result = new BoundAssignmentOperator(this.Syntax, left, right, isRef, type, this.
HasErrors
);
1884
var result = new BoundDeconstructionAssignmentOperator(this.Syntax, left, right, isUsed, type, this.
HasErrors
);
1925
var result = new BoundNullCoalescingOperator(this.Syntax, leftOperand, rightOperand, leftPlaceholder, leftConversion, operatorResultKind, @checked, type, this.
HasErrors
);
1956
var result = new BoundNullCoalescingAssignmentOperator(this.Syntax, leftOperand, rightOperand, type, this.
HasErrors
);
1995
var result = new BoundUnconvertedConditionalOperator(this.Syntax, condition, consequence, alternative, constantValueOpt, noCommonTypeError, this.
HasErrors
);
2039
var result = new BoundConditionalOperator(this.Syntax, isRef, condition, consequence, alternative, constantValueOpt, naturalTypeOpt, wasTargetTyped, type, this.
HasErrors
);
2072
var result = new BoundArrayAccess(this.Syntax, expression, indices, type, this.
HasErrors
);
2101
var result = new BoundRefArrayAccess(this.Syntax, arrayAccess, this.
HasErrors
);
2131
var result = new BoundArrayLength(this.Syntax, expression, type, this.
HasErrors
);
2164
var result = new BoundAwaitableInfo(this.Syntax, awaitableInstancePlaceholder, isDynamic, getAwaiter, isCompleted, getResult, this.
HasErrors
);
2199
var result = new BoundAwaitExpression(this.Syntax, expression, awaitableInfo, debugInfo, type, this.
HasErrors
);
2252
var result = new BoundTypeOfOperator(this.Syntax, sourceType, getTypeFromHandle, type, this.
HasErrors
);
2284
var result = new BoundBlockInstrumentation(this.Syntax, locals, prologue, epilogue, this.
HasErrors
);
2324
var result = new BoundMethodDefIndex(this.Syntax, method, type, this.
HasErrors
);
2367
var result = new BoundLocalId(this.Syntax, local, hoistedField, type, this.
HasErrors
);
2410
var result = new BoundParameterId(this.Syntax, parameter, hoistedField, type, this.
HasErrors
);
2445
var result = new BoundStateMachineInstanceId(this.Syntax, type, this.
HasErrors
);
2480
var result = new BoundMaximumMethodDefIndex(this.Syntax, type, this.
HasErrors
);
2518
var result = new BoundInstrumentationPayloadRoot(this.Syntax, analysisKind, type, this.
HasErrors
);
2553
var result = new BoundThrowIfModuleCancellationRequested(this.Syntax, type, this.
HasErrors
);
2588
var result = new ModuleCancellationTokenExpression(this.Syntax, type, this.
HasErrors
);
2623
var result = new BoundModuleVersionId(this.Syntax, type, this.
HasErrors
);
2658
var result = new BoundModuleVersionIdString(this.Syntax, type, this.
HasErrors
);
2698
var result = new BoundSourceDocumentIndex(this.Syntax, document, type, this.
HasErrors
);
2741
var result = new BoundMethodInfo(this.Syntax, method, getMethodFromHandle, type, this.
HasErrors
);
2784
var result = new BoundFieldInfo(this.Syntax, field, getFieldFromHandle, type, this.
HasErrors
);
2838
var result = new BoundDefaultExpression(this.Syntax, targetType, constantValueOpt, type, this.
HasErrors
);
2873
var result = new BoundIsOperator(this.Syntax, operand, targetType, conversionKind, type, this.
HasErrors
);
2910
var result = new BoundAsOperator(this.Syntax, operand, targetType, operandPlaceholder, operandConversion, type, this.
HasErrors
);
2942
var result = new BoundSizeOfOperator(this.Syntax, sourceType, constantValueOpt, type, this.
HasErrors
);
2986
var result = new BoundConversion(this.Syntax, operand, conversion, isBaseConversion, @checked, explicitCastInCode, constantValueOpt, conversionGroupOpt, originalUserDefinedConversionsOpt, type, this.
HasErrors
);
3019
var result = new BoundReadOnlySpanFromArray(this.Syntax, operand, conversionMethod, type, this.
HasErrors
);
3054
var result = new BoundArgList(this.Syntax, type, this.
HasErrors
);
3085
var result = new BoundArgListOperator(this.Syntax, arguments, argumentRefKindsOpt, type, this.
HasErrors
);
3124
var result = new BoundFixedLocalCollectionInitializer(this.Syntax, elementPointerType, elementPointerPlaceholder, elementPointerConversion, expression, getPinnableOpt, type, this.
HasErrors
);
3163
var result = new BoundSequencePoint(this.Syntax, statementOpt, this.
HasErrors
);
3190
var result = new BoundSequencePointWithSpan(this.Syntax, statementOpt, span, this.
HasErrors
);
3227
var result = new BoundSavePreviousSequencePoint(this.Syntax, identifier, this.
HasErrors
);
3264
var result = new BoundRestorePreviousSequencePoint(this.Syntax, identifier, this.
HasErrors
);
3295
var result = new BoundStepThroughSequencePoint(this.Syntax, span, this.
HasErrors
);
3331
var result = new BoundBlock(this.Syntax, locals, localFunctions, hasUnsafeModifier, instrumentation, statements, this.
HasErrors
);
3360
var result = new BoundScope(this.Syntax, locals, statements, this.
HasErrors
);
3391
var result = new BoundStateMachineScope(this.Syntax, fields, statement, this.
HasErrors
);
3427
var result = new BoundLocalDeclaration(this.Syntax, localSymbol, declaredTypeOpt, initializerOpt, argumentsOpt, inferredType, this.
HasErrors
);
3467
var result = new BoundMultipleLocalDeclarations(this.Syntax, localDeclarations, this.
HasErrors
);
3497
var result = new BoundUsingLocalDeclarations(this.Syntax, patternDisposeInfoOpt, awaitOpt, localDeclarations, this.
HasErrors
);
3529
var result = new BoundLocalFunctionStatement(this.Syntax, symbol, blockBody, expressionBody, this.
HasErrors
);
3560
var result = new BoundNoOpStatement(this.Syntax, flavor, this.
HasErrors
);
3589
var result = new BoundReturnStatement(this.Syntax, refKind, expressionOpt, @checked, this.
HasErrors
);
3617
var result = new BoundYieldReturnStatement(this.Syntax, expression, this.
HasErrors
);
3659
var result = new BoundThrowStatement(this.Syntax, expressionOpt, this.
HasErrors
);
3687
var result = new BoundExpressionStatement(this.Syntax, expression, this.
HasErrors
);
3724
var result = new BoundBreakStatement(this.Syntax, label, this.
HasErrors
);
3761
var result = new BoundContinueStatement(this.Syntax, label, this.
HasErrors
);
3806
var result = new BoundSwitchStatement(this.Syntax, expression, innerLocals, innerLocalFunctions, switchSections, reachabilityDecisionDag, defaultLabel, breakLabel, this.
HasErrors
);
3842
var result = new BoundSwitchDispatch(this.Syntax, expression, cases, defaultLabel, lengthBasedStringSwitchDataOpt, this.
HasErrors
);
3875
var result = new BoundIfStatement(this.Syntax, condition, consequence, alternativeOpt, this.
HasErrors
);
3955
var result = new BoundDoStatement(this.Syntax, locals, condition, body, breakLabel, continueLabel, this.
HasErrors
);
3985
var result = new BoundWhileStatement(this.Syntax, locals, condition, body, breakLabel, continueLabel, this.
HasErrors
);
4027
var result = new BoundForStatement(this.Syntax, outerLocals, initializer, innerLocals, condition, increment, body, breakLabel, continueLabel, this.
HasErrors
);
4078
var result = new BoundForEachStatement(this.Syntax, enumeratorInfoOpt, elementPlaceholder, elementConversion, iterationVariableType, iterationVariables, iterationErrorExpressionOpt, expression, deconstructionOpt, awaitOpt, body, breakLabel, continueLabel, this.
HasErrors
);
4109
var result = new BoundForEachDeconstructStep(this.Syntax, deconstructionAssignment, targetPlaceholder, this.
HasErrors
);
4148
var result = new BoundUsingStatement(this.Syntax, locals, declarationsOpt, expressionOpt, body, awaitOpt, patternDisposeInfoOpt, this.
HasErrors
);
4182
var result = new BoundFixedStatement(this.Syntax, locals, declarations, body, this.
HasErrors
);
4213
var result = new BoundLockStatement(this.Syntax, argument, body, this.
HasErrors
);
4250
var result = new BoundTryStatement(this.Syntax, tryBlock, catchBlocks, finallyBlockOpt, finallyLabelOpt, preferFaultHandler, this.
HasErrors
);
4291
var result = new BoundCatchBlock(this.Syntax, locals, exceptionSourceOpt, exceptionTypeOpt, exceptionFilterPrologueOpt, exceptionFilterOpt, body, isSynthesizedAsyncCatchAll, this.
HasErrors
);
4322
var result = new BoundLiteral(this.Syntax, constantValueOpt, type, this.
HasErrors
);
4362
var result = new BoundUtf8String(this.Syntax, value, type, this.
HasErrors
);
4397
var result = new BoundThisReference(this.Syntax, type, this.
HasErrors
);
4432
var result = new BoundPreviousSubmissionReference(this.Syntax, type, this.
HasErrors
);
4467
var result = new BoundHostObjectMemberReference(this.Syntax, type, this.
HasErrors
);
4496
var result = new BoundBaseReference(this.Syntax, type, this.
HasErrors
);
4545
var result = new BoundLocal(this.Syntax, localSymbol, declarationKind, constantValueOpt, isNullableUnknown, type, this.
HasErrors
);
4590
var result = new BoundPseudoVariable(this.Syntax, localSymbol, emitExpressions, type, this.
HasErrors
);
4623
var result = new BoundRangeVariable(this.Syntax, rangeVariableSymbol, value, type, this.
HasErrors
);
4663
var result = new BoundParameter(this.Syntax, parameterSymbol, type, this.
HasErrors
);
4700
var result = new BoundLabelStatement(this.Syntax, label, this.
HasErrors
);
4732
var result = new BoundGotoStatement(this.Syntax, label, caseExpressionOpt, labelExpressionOpt, this.
HasErrors
);
4763
var result = new BoundLabeledStatement(this.Syntax, label, body, this.
HasErrors
);
4800
var result = new BoundLabel(this.Syntax, label, type, this.
HasErrors
);
4837
var result = new BoundStatementList(this.Syntax, statements, this.
HasErrors
);
4870
var result = new BoundConditionalGoto(this.Syntax, condition, jumpIfTrue, label, this.
HasErrors
);
4933
var result = new BoundSwitchExpressionArm(this.Syntax, locals, pattern, whenClause, value, label, this.
HasErrors
);
4961
var result = new BoundUnconvertedSwitchExpression(this.Syntax, expression, switchArms, reachabilityDecisionDag, defaultLabel, reportedNotExhaustive, type, this.
HasErrors
);
4995
var result = new BoundConvertedSwitchExpression(this.Syntax, naturalTypeOpt, wasTargetTyped, expression, switchArms, reachabilityDecisionDag, defaultLabel, reportedNotExhaustive, type, this.
HasErrors
);
5023
var result = new BoundDecisionDag(this.Syntax, rootNode, this.
HasErrors
);
5068
var result = new BoundEvaluationDecisionDagNode(this.Syntax, evaluation, next, this.
HasErrors
);
5102
var result = new BoundTestDecisionDagNode(this.Syntax, test, whenTrue, whenFalse, this.
HasErrors
);
5137
var result = new BoundWhenDecisionDagNode(this.Syntax, bindings, whenExpression, whenTrue, whenFalse, this.
HasErrors
);
5174
var result = new BoundLeafDecisionDagNode(this.Syntax, label, this.
HasErrors
);
5220
var result = new BoundDagTemp(this.Syntax, type, source, index, this.
HasErrors
);
5249
var result = new BoundDagTypeTest(this.Syntax, type, input, this.
HasErrors
);
5277
var result = new BoundDagNonNullTest(this.Syntax, isExplicitTest, input, this.
HasErrors
);
5303
var result = new BoundDagExplicitNullTest(this.Syntax, input, this.
HasErrors
);
5332
var result = new BoundDagValueTest(this.Syntax, value, input, this.
HasErrors
);
5363
var result = new BoundDagRelationalTest(this.Syntax, operatorKind, value, input, this.
HasErrors
);
5404
var result = new BoundDagDeconstructEvaluation(this.Syntax, deconstructMethod, input, this.
HasErrors
);
5433
var result = new BoundDagTypeEvaluation(this.Syntax, type, input, this.
HasErrors
);
5462
var result = new BoundDagFieldEvaluation(this.Syntax, field, input, this.
HasErrors
);
5493
var result = new BoundDagPropertyEvaluation(this.Syntax, property, isLengthOrCount, input, this.
HasErrors
);
5524
var result = new BoundDagIndexEvaluation(this.Syntax, property, index, input, this.
HasErrors
);
5571
var result = new BoundDagIndexerEvaluation(this.Syntax, indexerType, lengthTemp, index, indexerAccess, receiverPlaceholder, argumentPlaceholder, input, this.
HasErrors
);
5620
var result = new BoundDagSliceEvaluation(this.Syntax, sliceType, lengthTemp, startIndex, endIndex, indexerAccess, receiverPlaceholder, argumentPlaceholder, input, this.
HasErrors
);
5649
var result = new BoundDagAssignmentEvaluation(this.Syntax, target, input, this.
HasErrors
);
5681
var result = new BoundSwitchSection(this.Syntax, locals, switchLabels, statements, this.
HasErrors
);
5714
var result = new BoundSwitchLabel(this.Syntax, label, pattern, whenClause, this.
HasErrors
);
5756
var result = new BoundSequencePointExpression(this.Syntax, expression, type, this.
HasErrors
);
5792
var result = new BoundSequence(this.Syntax, locals, sideEffects, value, type, this.
HasErrors
);
5828
var result = new BoundSpillSequence(this.Syntax, locals, sideEffects, value, type, this.
HasErrors
);
5867
var result = new BoundDynamicMemberAccess(this.Syntax, receiver, typeArgumentsOpt, name, invoked, indexed, type, this.
HasErrors
);
5920
var result = new BoundDynamicInvocation(this.Syntax, argumentNamesOpt, argumentRefKindsOpt, applicableMethods, expression, arguments, type, this.
HasErrors
);
5953
var result = new BoundConditionalAccess(this.Syntax, receiver, accessExpression, type, this.
HasErrors
);
5994
var result = new BoundLoweredConditionalAccess(this.Syntax, receiver, hasValueMethodOpt, whenNotNull, whenNullOpt, id, forceCopyOfNullableValueType, type, this.
HasErrors
);
6032
var result = new BoundConditionalReceiver(this.Syntax, id, type, this.
HasErrors
);
6065
var result = new BoundComplexConditionalReceiver(this.Syntax, valueTypeReceiver, referenceTypeReceiver, type, this.
HasErrors
);
6106
var result = new BoundMethodGroup(this.Syntax, typeArgumentsOpt, name, methods, lookupSymbolOpt, lookupError, flags, functionType, receiverOpt, resultKind, this.
HasErrors
);
6134
var result = new BoundPropertyGroup(this.Syntax, properties, receiverOpt, resultKind, this.
HasErrors
);
6189
var result = new BoundCall(this.Syntax, receiverOpt, initialBindingReceiverIsSubjectToCloning, method, arguments, argumentNamesOpt, argumentRefKindsOpt, isDelegateCall, expanded, invokedAsExtensionMethod, argsToParamsOpt, defaultArguments, resultKind, originalMethodsOpt, type, this.
HasErrors
);
6228
var result = new BoundEventAssignmentOperator(this.Syntax, @event, isAddition, isDynamic, receiverOpt, argument, type, this.
HasErrors
);
6273
var result = new BoundAttribute(this.Syntax, constructor, constructorArguments, constructorArgumentNamesOpt, constructorArgumentsToParamsOpt, constructorExpanded, constructorDefaultArguments, namedArguments, resultKind, type, this.
HasErrors
);
6311
var result = new BoundUnconvertedObjectCreationExpression(this.Syntax, arguments, argumentNamesOpt, argumentRefKindsOpt, initializerOpt, binder, this.
HasErrors
);
6383
var result = new BoundObjectCreationExpression(this.Syntax, constructor, constructorsGroup, arguments, argumentNamesOpt, argumentRefKindsOpt, expanded, argsToParamsOpt, defaultArguments, constantValueOpt, initializerExpressionOpt, wasTargetTyped, type, this.
HasErrors
);
6424
var result = new BoundUnconvertedCollectionExpression(this.Syntax, elements, this.
HasErrors
);
6469
var result = new BoundCollectionExpression(this.Syntax, collectionTypeKind, placeholder, collectionCreation, collectionBuilderMethod, collectionBuilderInvocationPlaceholder, collectionBuilderInvocationConversion, wasTargetTyped, unconvertedCollectionExpression, elements, type, this.
HasErrors
);
6497
var result = new BoundCollectionExpressionSpreadExpressionPlaceholder(this.Syntax, type, this.
HasErrors
);
6537
var result = new BoundCollectionExpressionSpreadElement(this.Syntax, expression, expressionPlaceholder, conversion, enumeratorInfoOpt, lengthOrCount, elementPlaceholder, iteratorBody, this.
HasErrors
);
6582
var result = new BoundTupleLiteral(this.Syntax, arguments, argumentNamesOpt, inferredNamesOpt, type, this.
HasErrors
);
6612
var result = new BoundConvertedTupleLiteral(this.Syntax, sourceTuple, wasTargetTyped, arguments, argumentNamesOpt, inferredNamesOpt, type, this.
HasErrors
);
6655
var result = new BoundDynamicObjectCreationExpression(this.Syntax, name, arguments, argumentNamesOpt, argumentRefKindsOpt, initializerExpressionOpt, applicableMethods, wasTargetTyped, type, this.
HasErrors
);
6687
var result = new BoundNoPiaObjectCreationExpression(this.Syntax, guidString, initializerExpressionOpt, wasTargetTyped, type, this.
HasErrors
);
6734
var result = new BoundObjectInitializerExpression(this.Syntax, placeholder, initializers, type, this.
HasErrors
);
6783
var result = new BoundObjectInitializerMember(this.Syntax, memberSymbol, arguments, argumentNamesOpt, argumentRefKindsOpt, expanded, argsToParamsOpt, defaultArguments, resultKind, accessorKind, receiverType, type, this.
HasErrors
);
6828
var result = new BoundDynamicObjectInitializerMember(this.Syntax, memberName, receiverType, type, this.
HasErrors
);
6856
var result = new BoundCollectionInitializerExpression(this.Syntax, placeholder, initializers, type, this.
HasErrors
);
6901
var result = new BoundCollectionElementInitializer(this.Syntax, addMethod, arguments, implicitReceiverOpt, expanded, argsToParamsOpt, defaultArguments, invokedAsExtensionMethod, resultKind, type, this.
HasErrors
);
6933
var result = new BoundDynamicCollectionElementInitializer(this.Syntax, applicableMethods, expression, arguments, type, this.
HasErrors
);
6968
var result = new BoundImplicitReceiver(this.Syntax, type, this.
HasErrors
);
7004
var result = new BoundAnonymousObjectCreationExpression(this.Syntax, constructor, arguments, declarations, type, this.
HasErrors
);
7044
var result = new BoundAnonymousPropertyDeclaration(this.Syntax, property, type, this.
HasErrors
);
7074
var result = new BoundNewT(this.Syntax, initializerExpressionOpt, wasTargetTyped, type, this.
HasErrors
);
7110
var result = new BoundDelegateCreationExpression(this.Syntax, argument, methodOpt, isExtensionMethod, wasTargetTyped, type, this.
HasErrors
);
7142
var result = new BoundArrayCreation(this.Syntax, bounds, initializerOpt, type, this.
HasErrors
);
7173
var result = new BoundArrayInitialization(this.Syntax, isInferred, initializers, this.
HasErrors
);
7219
var result = new BoundStackAllocArrayCreation(this.Syntax, elementType, count, initializerOpt, type, this.
HasErrors
);
7248
var result = new BoundConvertedStackAllocExpression(this.Syntax, elementType, count, initializerOpt, type, this.
HasErrors
);
7288
var result = new BoundFieldAccess(this.Syntax, receiverOpt, fieldSymbol, constantValueOpt, resultKind, isByValue, isDeclaration, type, this.
HasErrors
);
7328
var result = new BoundHoistedFieldAccess(this.Syntax, fieldSymbol, type, this.
HasErrors
);
7366
var result = new BoundPropertyAccess(this.Syntax, receiverOpt, initialBindingReceiverIsSubjectToCloning, propertySymbol, autoPropertyAccessorKind, resultKind, type, this.
HasErrors
);
7402
var result = new BoundEventAccess(this.Syntax, receiverOpt, eventSymbol, isUsableAsField, resultKind, type, this.
HasErrors
);
7453
var result = new BoundIndexerAccess(this.Syntax, receiverOpt, initialBindingReceiverIsSubjectToCloning, indexer, arguments, argumentNamesOpt, argumentRefKindsOpt, expanded, accessorKind, argsToParamsOpt, defaultArguments, originalIndexersOpt, type, this.
HasErrors
);
7502
var result = new BoundImplicitIndexerAccess(this.Syntax, receiver, argument, lengthOrCountAccess, receiverPlaceholder, indexerOrSliceAccess, argumentPlaceholders, type, this.
HasErrors
);
7543
var result = new BoundInlineArrayAccess(this.Syntax, expression, argument, isValue, getItemOrSliceHelper, type, this.
HasErrors
);
7583
var result = new BoundDynamicIndexerAccess(this.Syntax, receiver, arguments, argumentNamesOpt, argumentRefKindsOpt, applicableIndexers, type, this.
HasErrors
);
7623
var result = new BoundLambda(this.Syntax, unboundLambda, symbol, body, diagnostics, binder, type, this.
HasErrors
);
7667
var result = new UnboundLambda(this.Syntax, data, functionType, withDependencies, this.
HasErrors
);
7708
var result = new BoundQueryClause(this.Syntax, value, definedSymbol, operation, cast, binder, unoptimizedForm, type, this.
HasErrors
);
7734
var result = new BoundTypeOrInstanceInitializers(this.Syntax, statements, this.
HasErrors
);
7767
var result = new BoundNameOfOperator(this.Syntax, argument, constantValueOpt, type, this.
HasErrors
);
7809
var result = new BoundUnconvertedInterpolatedString(this.Syntax, parts, constantValueOpt, type, this.
HasErrors
);
7837
var result = new BoundInterpolatedString(this.Syntax, interpolationData, parts, constantValueOpt, type, this.
HasErrors
);
7865
var result = new BoundInterpolatedStringHandlerPlaceholder(this.Syntax, type, this.
HasErrors
);
7903
var result = new BoundInterpolatedStringArgumentPlaceholder(this.Syntax, argumentIndex, type, this.
HasErrors
);
7938
var result = new BoundStringInsert(this.Syntax, value, alignment, format, isInterpolatedStringHandlerAppendCall, this.
HasErrors
);
7980
var result = new BoundIsPatternExpression(this.Syntax, expression, pattern, isNegated, reachabilityDecisionDag, whenTrueLabel, whenFalseLabel, type, this.
HasErrors
);
8045
var result = new BoundConstantPattern(this.Syntax, value, constantValue, inputType, narrowedType, this.
HasErrors
);
8085
var result = new BoundDiscardPattern(this.Syntax, inputType, narrowedType, this.
HasErrors
);
8138
var result = new BoundDeclarationPattern(this.Syntax, declaredType, isVar, variable, variableAccess, inputType, narrowedType, this.
HasErrors
);
8179
var result = new BoundRecursivePattern(this.Syntax, declaredType, deconstructMethod, deconstruction, properties, isExplicitNotNullTest, variable, variableAccess, inputType, narrowedType, this.
HasErrors
);
8223
var result = new BoundListPattern(this.Syntax, subpatterns, hasSlice, lengthAccess, indexerAccess, receiverPlaceholder, argumentPlaceholder, variable, variableAccess, inputType, narrowedType, this.
HasErrors
);
8262
var result = new BoundSlicePattern(this.Syntax, pattern, indexerAccess, receiverPlaceholder, argumentPlaceholder, inputType, narrowedType, this.
HasErrors
);
8302
var result = new BoundITuplePattern(this.Syntax, getLengthMethod, getItemMethod, subpatterns, inputType, narrowedType, this.
HasErrors
);
8344
var result = new BoundPositionalSubpattern(this.Syntax, symbol, pattern, this.
HasErrors
);
8374
var result = new BoundPropertySubpattern(this.Syntax, member, isLengthOrCount, pattern, this.
HasErrors
);
8406
var result = new BoundPropertySubpatternMember(this.Syntax, receiver, symbol, type, this.
HasErrors
);
8442
var result = new BoundTypePattern(this.Syntax, declaredType, isExplicitNotNullTest, inputType, narrowedType, this.
HasErrors
);
8481
var result = new BoundBinaryPattern(this.Syntax, disjunction, left, right, inputType, narrowedType, this.
HasErrors
);
8515
var result = new BoundNegatedPattern(this.Syntax, negated, inputType, narrowedType, this.
HasErrors
);
8554
var result = new BoundRelationalPattern(this.Syntax, relation, value, constantValue, inputType, narrowedType, this.
HasErrors
);
8589
var result = new BoundDiscardExpression(this.Syntax, nullableAnnotation, isInferred, type, this.
HasErrors
);
8617
var result = new BoundThrowExpression(this.Syntax, expression, type, this.
HasErrors
);
8660
var result = new OutVariablePendingInference(this.Syntax, variableSymbol, receiverOpt, this.
HasErrors
);
8686
var result = new DeconstructionVariablePendingInference(this.Syntax, variableSymbol, receiverOpt, this.
HasErrors
);
8721
var result = new OutDeconstructVarPendingInference(this.Syntax, variableSymbol, isDiscardExpression, this.
HasErrors
);
8757
var result = new BoundNonConstructorMethodBody(this.Syntax, blockBody, expressionBody, this.
HasErrors
);
8787
var result = new BoundConstructorMethodBody(this.Syntax, locals, initializer, blockBody, expressionBody, this.
HasErrors
);
8818
var result = new BoundExpressionWithNullability(this.Syntax, expression, nullableAnnotation, type, this.
HasErrors
);
8853
var result = new BoundWithExpression(this.Syntax, receiver, cloneMethod, initializerExpression, type, this.
HasErrors
);
15006
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
15014
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
15022
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
15028
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
15035
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
15044
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
15053
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
15060
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
15067
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
15074
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
15082
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
15089
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
15097
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
15104
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
15111
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
15118
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
15125
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
15133
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
15141
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
15151
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
15157
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
15163
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
15174
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
15182
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
15191
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
15205
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
15222
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
15231
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
15239
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
15248
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
15257
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
15268
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
15279
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
15288
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
15296
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
15305
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
15314
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
15324
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
15336
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
15347
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
15363
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
15379
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
15389
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
15399
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
15412
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
15421
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
15433
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
15447
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
15456
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
15464
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
15472
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
15482
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
15492
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
15501
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
15509
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
15517
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
15526
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
15535
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
15542
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
15549
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
15557
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
15564
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
15571
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
15578
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
15585
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
15593
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
15602
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
15611
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
15618
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
15627
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
15637
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
15648
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
15657
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
15672
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
15681
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
15688
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
15697
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
15709
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
15715
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
15722
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
15728
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
15734
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
15740
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
15750
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
15757
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
15764
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
15774
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
15780
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
15788
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
15796
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
15802
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
15810
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
15816
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
15824
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
15830
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
15836
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
15842
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
15854
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
15863
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
15871
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
15881
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
15891
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
15904
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
15921
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
15928
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
15939
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
15947
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
15954
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
15964
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
15976
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
15984
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
15992
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
15999
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
16006
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
16013
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
16020
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
16031
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
16040
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
16049
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
16057
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
16063
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
16071
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
16078
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
16086
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
16092
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
16100
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
16110
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
16122
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
16136
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
16142
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
16149
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
16157
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
16166
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
16172
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
16180
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
16187
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
16194
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
16200
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
16207
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
16215
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
16222
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
16229
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
16236
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
16244
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
16252
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
16264
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
16277
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
16284
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
16292
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
16300
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
16308
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
16318
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
16328
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
16340
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
16352
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
16361
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
16374
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
16382
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
16391
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
16407
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
16417
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
16437
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
16449
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
16464
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
16476
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
16494
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
16502
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
16518
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
16525
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
16537
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
16547
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
16559
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
16573
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
16583
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
16592
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
16609
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
16618
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
16627
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
16642
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
16652
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
16659
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
16669
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
16677
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
16686
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
16697
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
16706
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
16715
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
16725
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
16735
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
16748
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
16756
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
16768
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
16779
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
16797
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
16810
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
16821
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
16833
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
16845
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
16855
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
16868
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
16874
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
16883
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
16892
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
16902
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
16909
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
16917
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
16928
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
16941
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
16950
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
16957
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
16968
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
16982
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
16997
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
17008
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
17018
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
17025
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
17033
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
17041
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
17050
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
17060
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
17068
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
17078
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
17087
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
17095
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
17104
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
17113
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
17122
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
17129
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
17138
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
17147
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
17157
new TreeDumperNode("hasErrors", node.
HasErrors
, null)
Lowering\ClosureConversion\ClosureConversion.cs (2)
824
return new BoundParameter(node.Syntax, replacementParameter, node.
HasErrors
);
1320
return new BoundBlock(node.Syntax, newLocals.ToImmutableAndFree(), newStatements.ToImmutableAndFree(), node.
HasErrors
);
Lowering\Instrumentation\DebugInfoInjector.cs (1)
367
original.
HasErrors
);
Lowering\LocalRewriter\LocalRewriter.cs (7)
153
if (localRewriter._needsSpilling && !loweredStatement.
HasErrors
)
209
Debug.Assert(!node.
HasErrors
, "nodes with errors should not be lowered");
227
Debug.Assert(!node.
HasErrors
, "nodes with errors should not be lowered");
239
Debug.Assert(!node.
HasErrors
, "nodes with errors should not be lowered");
280
Debug.Assert(visited == null || visited.
HasErrors
|| ReferenceEquals(visited.Type, node.Type) ||
512
Debug.Assert(value.Type is { } && (value.Type.Equals(placeholder.Type, TypeCompareKind.AllIgnoreOptions) || value.
HasErrors
));
814
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)
1025
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)
36
if (node.
HasErrors
)
700
hasErrors: node.
HasErrors
);
996
hasErrors: node.
HasErrors
);
1204
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
)
244
if (initializerExpressionOpt != null && !initializerExpressionOpt.
HasErrors
)
262
Debug.Assert(initializerExpression != null && !initializerExpression.
HasErrors
);
315
if (node.InitializerExpressionOpt == null || node.InitializerExpressionOpt.
HasErrors
)
424
if (node.InitializerExpressionOpt == null || node.InitializerExpressionOpt.
HasErrors
)
Lowering\LocalRewriter\LocalRewriter_StringConcat.cs (1)
408
Debug.Assert(loweredArgs.All(a => a.
HasErrors
|| a.Type is { } && a.Type.IsStringType()));
Lowering\LocalRewriter\LocalRewriter_TupleBinaryOperator.cs (7)
79
hasErrors: conversion.
HasErrors
);
85
ImmutableArray<bool>.Empty, conversion.Type, conversion.
HasErrors
);
121
syntax, fieldAccess, elementConversions[i], boundConversion.Checked, boundConversion.ExplicitCastInCode, null, null, destElementTypes[i].Type, boundConversion.
HasErrors
);
127
ImmutableArray<bool>.Empty, expr.Type, expr.
HasErrors
);
163
ImmutableArray<bool>.Empty, tuple.Type, tuple.
HasErrors
);
217
type: eType, hasErrors: expr.
HasErrors
);
462
hasErrors: expr.
HasErrors
).WithSuppression(expr.IsSuppressed);
Lowering\LocalRewriter\LocalRewriter_WhileStatement.cs (1)
38
node.
HasErrors
);
Lowering\MethodToClassRewriter.cs (1)
449
return new BoundLocal(node.Syntax, replacementLocal, node.ConstantValueOpt, replacementLocal.Type, node.
HasErrors
);
Lowering\StateMachineRewriter\StateMachineRewriter.cs (1)
95
if (this.body.
HasErrors
)
Symbols\Source\SourceComplexParameterSymbol.cs (1)
385
if (valueBeforeConversion.
HasErrors
)