-
Notifications
You must be signed in to change notification settings - Fork 4.1k
/
Copy pathBinder_Statements.cs
4107 lines (3565 loc) · 194 KB
/
Binder_Statements.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
// See the LICENSE file in the project root for more information.
#nullable disable
using System;
using System.Collections.Immutable;
using System.Diagnostics;
using System.Linq;
using Microsoft.CodeAnalysis.CSharp.Symbols;
using Microsoft.CodeAnalysis.CSharp.Syntax;
using Microsoft.CodeAnalysis.PooledObjects;
using Roslyn.Utilities;
namespace Microsoft.CodeAnalysis.CSharp
{
/// <summary>
/// This portion of the binder converts StatementSyntax nodes into BoundStatements
/// </summary>
internal partial class Binder
{
/// <summary>
/// This is the set of parameters and local variables that were used as arguments to
/// lock or using statements in enclosing scopes.
/// </summary>
/// <remarks>
/// using (x) { } // x counts
/// using (IDisposable y = null) { } // y does not count
/// </remarks>
internal virtual ImmutableHashSet<Symbol> LockedOrDisposedVariables
{
get { return Next.LockedOrDisposedVariables; }
}
/// <remarks>
/// Noteworthy override is in MemberSemanticModel.IncrementalBinder (used for caching).
/// </remarks>
public virtual BoundStatement BindStatement(StatementSyntax node, BindingDiagnosticBag diagnostics)
{
if (node.AttributeLists.Count > 0)
{
var attributeList = node.AttributeLists[0];
// Currently, attributes are only allowed on local-functions.
if (node.Kind() == SyntaxKind.LocalFunctionStatement)
{
CheckFeatureAvailability(attributeList, MessageID.IDS_FeatureLocalFunctionAttributes, diagnostics);
}
else if (node.Kind() != SyntaxKind.Block)
{
// Don't explicitly error here for blocks. Some codepaths bypass BindStatement
// to directly call BindBlock.
Error(diagnostics, ErrorCode.ERR_AttributesNotAllowed, attributeList);
}
}
Debug.Assert(node != null);
BoundStatement result;
switch (node.Kind())
{
case SyntaxKind.Block:
result = BindBlock((BlockSyntax)node, diagnostics);
break;
case SyntaxKind.LocalDeclarationStatement:
result = BindLocalDeclarationStatement((LocalDeclarationStatementSyntax)node, diagnostics);
break;
case SyntaxKind.LocalFunctionStatement:
result = BindLocalFunctionStatement((LocalFunctionStatementSyntax)node, diagnostics);
break;
case SyntaxKind.ExpressionStatement:
result = BindExpressionStatement((ExpressionStatementSyntax)node, diagnostics);
break;
case SyntaxKind.IfStatement:
result = BindIfStatement((IfStatementSyntax)node, diagnostics);
break;
case SyntaxKind.SwitchStatement:
result = BindSwitchStatement((SwitchStatementSyntax)node, diagnostics);
break;
case SyntaxKind.DoStatement:
result = BindDo((DoStatementSyntax)node, diagnostics);
break;
case SyntaxKind.WhileStatement:
result = BindWhile((WhileStatementSyntax)node, diagnostics);
break;
case SyntaxKind.ForStatement:
result = BindFor((ForStatementSyntax)node, diagnostics);
break;
case SyntaxKind.ForEachStatement:
case SyntaxKind.ForEachVariableStatement:
result = BindForEach((CommonForEachStatementSyntax)node, diagnostics);
break;
case SyntaxKind.BreakStatement:
result = BindBreak((BreakStatementSyntax)node, diagnostics);
break;
case SyntaxKind.ContinueStatement:
result = BindContinue((ContinueStatementSyntax)node, diagnostics);
break;
case SyntaxKind.ReturnStatement:
result = BindReturn((ReturnStatementSyntax)node, diagnostics);
break;
case SyntaxKind.FixedStatement:
result = BindFixedStatement((FixedStatementSyntax)node, diagnostics);
break;
case SyntaxKind.LabeledStatement:
result = BindLabeled((LabeledStatementSyntax)node, diagnostics);
break;
case SyntaxKind.GotoStatement:
case SyntaxKind.GotoCaseStatement:
case SyntaxKind.GotoDefaultStatement:
result = BindGoto((GotoStatementSyntax)node, diagnostics);
break;
case SyntaxKind.TryStatement:
result = BindTryStatement((TryStatementSyntax)node, diagnostics);
break;
case SyntaxKind.EmptyStatement:
result = BindEmpty((EmptyStatementSyntax)node);
break;
case SyntaxKind.ThrowStatement:
result = BindThrow((ThrowStatementSyntax)node, diagnostics);
break;
case SyntaxKind.UnsafeStatement:
result = BindUnsafeStatement((UnsafeStatementSyntax)node, diagnostics);
break;
case SyntaxKind.UncheckedStatement:
case SyntaxKind.CheckedStatement:
result = BindCheckedStatement((CheckedStatementSyntax)node, diagnostics);
break;
case SyntaxKind.UsingStatement:
result = BindUsingStatement((UsingStatementSyntax)node, diagnostics);
break;
case SyntaxKind.YieldBreakStatement:
result = BindYieldBreakStatement((YieldStatementSyntax)node, diagnostics);
break;
case SyntaxKind.YieldReturnStatement:
result = BindYieldReturnStatement((YieldStatementSyntax)node, diagnostics);
break;
case SyntaxKind.LockStatement:
result = BindLockStatement((LockStatementSyntax)node, diagnostics);
break;
default:
// NOTE: We could probably throw an exception here, but it's conceivable
// that a non-parser syntax tree could reach this point with an unexpected
// SyntaxKind and we don't want to throw if that occurs.
result = new BoundBadStatement(node, ImmutableArray<BoundNode>.Empty, hasErrors: true);
break;
}
BoundBlock block;
Debug.Assert(result.WasCompilerGenerated == false ||
(result.Kind == BoundKind.Block &&
(block = (BoundBlock)result).Statements.Length == 1 &&
block.Statements.Single().WasCompilerGenerated == false), "Synthetic node would not get cached");
Debug.Assert(result.Syntax is StatementSyntax, "BoundStatement should be associated with a statement syntax.");
Debug.Assert(System.Linq.Enumerable.Contains(result.Syntax.AncestorsAndSelf(), node), @"Bound statement (or one of its parents)
should have same syntax as the given syntax node.
Otherwise it may be confusing to the binder cache that uses syntax node as keys.");
return result;
}
private BoundStatement BindCheckedStatement(CheckedStatementSyntax node, BindingDiagnosticBag diagnostics)
{
return BindEmbeddedBlock(node.Block, diagnostics);
}
private BoundStatement BindUnsafeStatement(UnsafeStatementSyntax node, BindingDiagnosticBag diagnostics)
{
var unsafeBinder = this.GetBinder(node);
if (!this.Compilation.Options.AllowUnsafe)
{
Error(diagnostics, ErrorCode.ERR_IllegalUnsafe, node.UnsafeKeyword);
}
else if (this.IsIndirectlyInIterator) // called *after* we know the binder map has been created.
{
// Spec 8.2: "An iterator block always defines a safe context, even when its declaration
// is nested in an unsafe context."
Error(diagnostics, ErrorCode.ERR_IllegalInnerUnsafe, node.UnsafeKeyword);
}
return BindEmbeddedBlock(node.Block, diagnostics);
}
private BoundStatement BindFixedStatement(FixedStatementSyntax node, BindingDiagnosticBag diagnostics)
{
var fixedBinder = this.GetBinder(node);
Debug.Assert(fixedBinder != null);
fixedBinder.ReportUnsafeIfNotAllowed(node, diagnostics);
return fixedBinder.BindFixedStatementParts(node, diagnostics);
}
private BoundStatement BindFixedStatementParts(FixedStatementSyntax node, BindingDiagnosticBag diagnostics)
{
VariableDeclarationSyntax declarationSyntax = node.Declaration;
ImmutableArray<BoundLocalDeclaration> declarations;
BindForOrUsingOrFixedDeclarations(declarationSyntax, LocalDeclarationKind.FixedVariable, diagnostics, out declarations);
Debug.Assert(!declarations.IsEmpty);
BoundMultipleLocalDeclarations boundMultipleDeclarations = new BoundMultipleLocalDeclarations(declarationSyntax, declarations);
BoundStatement boundBody = BindPossibleEmbeddedStatement(node.Statement, diagnostics);
return new BoundFixedStatement(node,
GetDeclaredLocalsForScope(node),
boundMultipleDeclarations,
boundBody);
}
private void CheckRequiredLangVersionForIteratorMethods(YieldStatementSyntax statement, BindingDiagnosticBag diagnostics)
{
MessageID.IDS_FeatureIterators.CheckFeatureAvailability(diagnostics, statement.YieldKeyword);
var method = (MethodSymbol)this.ContainingMemberOrLambda;
if (method.IsAsync)
{
MessageID.IDS_FeatureAsyncStreams.CheckFeatureAvailability(
diagnostics,
method.DeclaringCompilation,
method.GetFirstLocation());
}
}
protected virtual void ValidateYield(YieldStatementSyntax node, BindingDiagnosticBag diagnostics)
{
Next?.ValidateYield(node, diagnostics);
}
private BoundStatement BindYieldReturnStatement(YieldStatementSyntax node, BindingDiagnosticBag diagnostics)
{
ValidateYield(node, diagnostics);
TypeSymbol elementType = GetIteratorElementType().Type;
BoundExpression argument = (node.Expression == null)
? BadExpression(node).MakeCompilerGenerated()
: BindValue(node.Expression, diagnostics, BindValueKind.RValue);
if (!argument.HasAnyErrors)
{
argument = GenerateConversionForAssignment(elementType, argument, diagnostics);
}
else
{
argument = BindToTypeForErrorRecovery(argument);
}
// NOTE: it's possible that more than one of these conditions is satisfied and that
// we won't report the syntactically innermost. However, dev11 appears to check
// them in this order, regardless of syntactic nesting (StatementBinder::bindYield).
if (this.Flags.Includes(BinderFlags.InFinallyBlock))
{
Error(diagnostics, ErrorCode.ERR_BadYieldInFinally, node.YieldKeyword);
}
else if (this.Flags.Includes(BinderFlags.InTryBlockOfTryCatch))
{
Error(diagnostics, ErrorCode.ERR_BadYieldInTryOfCatch, node.YieldKeyword);
}
else if (this.Flags.Includes(BinderFlags.InCatchBlock))
{
Error(diagnostics, ErrorCode.ERR_BadYieldInCatch, node.YieldKeyword);
}
else if (BindingTopLevelScriptCode)
{
Error(diagnostics, ErrorCode.ERR_YieldNotAllowedInScript, node.YieldKeyword);
}
CheckRequiredLangVersionForIteratorMethods(node, diagnostics);
return new BoundYieldReturnStatement(node, argument);
}
private BoundStatement BindYieldBreakStatement(YieldStatementSyntax node, BindingDiagnosticBag diagnostics)
{
if (this.Flags.Includes(BinderFlags.InFinallyBlock))
{
Error(diagnostics, ErrorCode.ERR_BadYieldInFinally, node.YieldKeyword);
}
else if (BindingTopLevelScriptCode)
{
Error(diagnostics, ErrorCode.ERR_YieldNotAllowedInScript, node.YieldKeyword);
}
ValidateYield(node, diagnostics);
CheckRequiredLangVersionForIteratorMethods(node, diagnostics);
return new BoundYieldBreakStatement(node);
}
private BoundStatement BindLockStatement(LockStatementSyntax node, BindingDiagnosticBag diagnostics)
{
var lockBinder = this.GetBinder(node);
Debug.Assert(lockBinder != null);
return lockBinder.BindLockStatementParts(diagnostics, lockBinder);
}
internal virtual BoundStatement BindLockStatementParts(BindingDiagnosticBag diagnostics, Binder originalBinder)
{
return this.Next.BindLockStatementParts(diagnostics, originalBinder);
}
private BoundStatement BindUsingStatement(UsingStatementSyntax node, BindingDiagnosticBag diagnostics)
{
var usingBinder = this.GetBinder(node);
Debug.Assert(usingBinder != null);
return usingBinder.BindUsingStatementParts(diagnostics, usingBinder);
}
internal virtual BoundStatement BindUsingStatementParts(BindingDiagnosticBag diagnostics, Binder originalBinder)
{
return this.Next.BindUsingStatementParts(diagnostics, originalBinder);
}
internal BoundStatement BindPossibleEmbeddedStatement(StatementSyntax node, BindingDiagnosticBag diagnostics)
{
Binder binder;
switch (node.Kind())
{
case SyntaxKind.LocalDeclarationStatement:
// Local declarations are not legal in contexts where we need embedded statements.
diagnostics.Add(ErrorCode.ERR_BadEmbeddedStmt, node.GetLocation());
// fall through
goto case SyntaxKind.ExpressionStatement;
case SyntaxKind.ExpressionStatement:
case SyntaxKind.LockStatement:
case SyntaxKind.IfStatement:
case SyntaxKind.YieldReturnStatement:
case SyntaxKind.ReturnStatement:
case SyntaxKind.ThrowStatement:
binder = this.GetBinder(node);
Debug.Assert(binder != null);
return binder.WrapWithVariablesIfAny(node, binder.BindStatement(node, diagnostics));
case SyntaxKind.LabeledStatement:
case SyntaxKind.LocalFunctionStatement:
// Labeled statements and local function statements are not legal in contexts where we need embedded statements.
diagnostics.Add(ErrorCode.ERR_BadEmbeddedStmt, node.GetLocation());
binder = this.GetBinder(node);
Debug.Assert(binder != null);
return binder.WrapWithVariablesAndLocalFunctionsIfAny(node, binder.BindStatement(node, diagnostics));
case SyntaxKind.SwitchStatement:
var switchStatement = (SwitchStatementSyntax)node;
binder = this.GetBinder(switchStatement.Expression);
Debug.Assert(binder != null);
return binder.WrapWithVariablesIfAny(switchStatement.Expression, binder.BindStatement(node, diagnostics));
case SyntaxKind.EmptyStatement:
var emptyStatement = (EmptyStatementSyntax)node;
if (!emptyStatement.SemicolonToken.IsMissing)
{
switch (node.Parent.Kind())
{
case SyntaxKind.ForStatement:
case SyntaxKind.ForEachStatement:
case SyntaxKind.ForEachVariableStatement:
case SyntaxKind.WhileStatement:
// For loop constructs, only warn if we see a block following the statement.
// That indicates code like: "while (x) ; { }"
// which is most likely a bug.
if (emptyStatement.SemicolonToken.GetNextToken().Kind() != SyntaxKind.OpenBraceToken)
{
break;
}
goto default;
default:
// For non-loop constructs, always warn. This is for code like:
// "if (x) ;" which is almost certainly a bug.
diagnostics.Add(ErrorCode.WRN_PossibleMistakenNullStatement, node.GetLocation());
break;
}
}
// fall through
goto default;
default:
return BindStatement(node, diagnostics);
}
}
private BoundExpression BindThrownExpression(ExpressionSyntax exprSyntax, BindingDiagnosticBag diagnostics, ref bool hasErrors)
{
var boundExpr = BindValue(exprSyntax, diagnostics, BindValueKind.RValue);
if (Compilation.LanguageVersion < MessageID.IDS_FeatureSwitchExpression.RequiredVersion())
{
// This is the pre-C# 8 algorithm for binding a thrown expression.
// SPEC VIOLATION: The spec requires the thrown exception to have a type, and that the type
// be System.Exception or derived from System.Exception. (Or, if a type parameter, to have
// an effective base class that meets that criterion.) However, we allow the literal null
// to be thrown, even though it does not meet that criterion and will at runtime always
// produce a null reference exception.
if (!boundExpr.IsLiteralNull())
{
boundExpr = BindToNaturalType(boundExpr, diagnostics);
var type = boundExpr.Type;
// If the expression is a lambda, anonymous method, or method group then it will
// have no compile-time type; give the same error as if the type was wrong.
CompoundUseSiteInfo<AssemblySymbol> useSiteInfo = GetNewCompoundUseSiteInfo(diagnostics);
if ((object)type == null || !type.IsErrorType() && !Compilation.IsExceptionType(type.EffectiveType(ref useSiteInfo), ref useSiteInfo))
{
diagnostics.Add(ErrorCode.ERR_BadExceptionType, exprSyntax.Location);
hasErrors = true;
diagnostics.Add(exprSyntax, useSiteInfo);
}
else
{
diagnostics.AddDependencies(useSiteInfo);
}
}
}
else
{
// In C# 8 and later we follow the ECMA specification, which neatly handles null and expressions of exception type.
boundExpr = GenerateConversionForAssignment(GetWellKnownType(WellKnownType.System_Exception, diagnostics, exprSyntax), boundExpr, diagnostics);
}
return boundExpr;
}
private BoundStatement BindThrow(ThrowStatementSyntax node, BindingDiagnosticBag diagnostics)
{
BoundExpression boundExpr = null;
bool hasErrors = false;
ExpressionSyntax exprSyntax = node.Expression;
if (exprSyntax != null)
{
boundExpr = BindThrownExpression(exprSyntax, diagnostics, ref hasErrors);
}
else if (!this.Flags.Includes(BinderFlags.InCatchBlock))
{
diagnostics.Add(ErrorCode.ERR_BadEmptyThrow, node.ThrowKeyword.GetLocation());
hasErrors = true;
}
else if (this.Flags.Includes(BinderFlags.InNestedFinallyBlock))
{
// There's a special error code for a rethrow in a finally clause in a catch clause.
// Best guess interpretation: if an exception occurs within the nested try block
// (i.e. the one in the catch clause, to which the finally clause is attached),
// then it's not clear whether the runtime will try to rethrow the "inner" exception
// or the "outer" exception. For this reason, the case is disallowed.
diagnostics.Add(ErrorCode.ERR_BadEmptyThrowInFinally, node.ThrowKeyword.GetLocation());
hasErrors = true;
}
return new BoundThrowStatement(node, boundExpr, hasErrors);
}
private static BoundStatement BindEmpty(EmptyStatementSyntax node)
{
return new BoundNoOpStatement(node, NoOpStatementFlavor.Default);
}
private BoundLabeledStatement BindLabeled(LabeledStatementSyntax node, BindingDiagnosticBag diagnostics)
{
// TODO: verify that goto label lookup was valid (e.g. error checking of symbol resolution for labels)
bool hasError = false;
var result = LookupResult.GetInstance();
CompoundUseSiteInfo<AssemblySymbol> useSiteInfo = GetNewCompoundUseSiteInfo(diagnostics);
var binder = this.LookupSymbolsWithFallback(result, node.Identifier.ValueText, arity: 0, useSiteInfo: ref useSiteInfo, options: LookupOptions.LabelsOnly);
// result.Symbols can be empty in some malformed code, e.g. when a labeled statement is used an embedded statement in an if or foreach statement
// In this case we create new label symbol on the fly, and an error is reported by parser
var symbol = result.Symbols.Count > 0 && result.IsMultiViable ?
(LabelSymbol)result.Symbols.First() :
new SourceLabelSymbol((MethodSymbol)ContainingMemberOrLambda, node.Identifier);
if (!symbol.IdentifierNodeOrToken.IsToken || symbol.IdentifierNodeOrToken.AsToken() != node.Identifier)
{
Error(diagnostics, ErrorCode.ERR_DuplicateLabel, node.Identifier, node.Identifier.ValueText);
hasError = true;
}
// check to see if this label (illegally) hides a label from an enclosing scope
if (binder != null)
{
result.Clear();
binder.Next.LookupSymbolsWithFallback(result, node.Identifier.ValueText, arity: 0, useSiteInfo: ref useSiteInfo, options: LookupOptions.LabelsOnly);
if (result.IsMultiViable)
{
// The label '{0}' shadows another label by the same name in a contained scope
Error(diagnostics, ErrorCode.ERR_LabelShadow, node.Identifier, node.Identifier.ValueText);
hasError = true;
}
}
diagnostics.Add(node, useSiteInfo);
result.Free();
var body = BindStatement(node.Statement, diagnostics);
return new BoundLabeledStatement(node, symbol, body, hasError);
}
private BoundStatement BindGoto(GotoStatementSyntax node, BindingDiagnosticBag diagnostics)
{
switch (node.Kind())
{
case SyntaxKind.GotoStatement:
var expression = BindLabel(node.Expression, diagnostics);
var boundLabel = expression as BoundLabel;
if (boundLabel == null)
{
// diagnostics already reported
return new BoundBadStatement(node, ImmutableArray.Create<BoundNode>(expression), true);
}
var symbol = boundLabel.Label;
return new BoundGotoStatement(node, symbol, null, boundLabel);
case SyntaxKind.GotoCaseStatement:
case SyntaxKind.GotoDefaultStatement:
// SPEC: If the goto case statement is not enclosed by a switch statement, a compile-time error occurs.
// SPEC: If the goto default statement is not enclosed by a switch statement, a compile-time error occurs.
SwitchBinder binder = GetSwitchBinder(this);
if (binder == null)
{
Error(diagnostics, ErrorCode.ERR_InvalidGotoCase, node);
ImmutableArray<BoundNode> childNodes;
if (node.Expression != null)
{
var value = BindRValueWithoutTargetType(node.Expression, BindingDiagnosticBag.Discarded);
childNodes = ImmutableArray.Create<BoundNode>(value);
}
else
{
childNodes = ImmutableArray<BoundNode>.Empty;
}
return new BoundBadStatement(node, childNodes, true);
}
return binder.BindGotoCaseOrDefault(node, this, diagnostics);
default:
throw ExceptionUtilities.UnexpectedValue(node.Kind());
}
}
private BoundStatement BindLocalFunctionStatement(LocalFunctionStatementSyntax node, BindingDiagnosticBag diagnostics)
{
MessageID.IDS_FeatureLocalFunctions.CheckFeatureAvailability(diagnostics, node.Identifier);
// already defined symbol in containing block
var localSymbol = this.LookupLocalFunction(node.Identifier);
var hasErrors = localSymbol.ScopeBinder
.ValidateDeclarationNameConflictsInScope(localSymbol, diagnostics);
BoundBlock blockBody = null;
BoundBlock expressionBody = null;
if (node.Body != null)
{
blockBody = runAnalysis(BindEmbeddedBlock(node.Body, diagnostics), diagnostics);
if (node.ExpressionBody != null)
{
expressionBody = runAnalysis(BindExpressionBodyAsBlock(node.ExpressionBody, BindingDiagnosticBag.Discarded), BindingDiagnosticBag.Discarded);
}
}
else if (node.ExpressionBody != null)
{
expressionBody = runAnalysis(BindExpressionBodyAsBlock(node.ExpressionBody, diagnostics), diagnostics);
}
else if (!hasErrors && (!localSymbol.IsExtern || !localSymbol.IsStatic))
{
hasErrors = true;
diagnostics.Add(ErrorCode.ERR_LocalFunctionMissingBody, localSymbol.GetFirstLocation(), localSymbol);
}
if (!hasErrors && (blockBody != null || expressionBody != null) && localSymbol.IsExtern)
{
hasErrors = true;
diagnostics.Add(ErrorCode.ERR_ExternHasBody, localSymbol.GetFirstLocation(), localSymbol);
}
Debug.Assert(blockBody != null || expressionBody != null || (localSymbol.IsExtern && localSymbol.IsStatic) || hasErrors);
localSymbol.GetDeclarationDiagnostics(diagnostics);
Symbol.CheckForBlockAndExpressionBody(
node.Body, node.ExpressionBody, node, diagnostics);
foreach (var modifier in node.Modifiers)
{
if (modifier.IsKind(SyntaxKind.StaticKeyword))
MessageID.IDS_FeatureStaticLocalFunctions.CheckFeatureAvailability(diagnostics, modifier);
else if (modifier.IsKind(SyntaxKind.ExternKeyword))
MessageID.IDS_FeatureExternLocalFunctions.CheckFeatureAvailability(diagnostics, modifier);
}
return new BoundLocalFunctionStatement(node, localSymbol, blockBody, expressionBody, hasErrors);
BoundBlock runAnalysis(BoundBlock block, BindingDiagnosticBag blockDiagnostics)
{
if (block != null)
{
// Have to do ControlFlowPass here because in MethodCompiler, we don't call this for synthed methods
// rather we go directly to LowerBodyOrInitializer, which skips over flow analysis (which is in CompileMethod)
// (the same thing - calling ControlFlowPass.Analyze in the lowering - is done for lambdas)
// It's a bit of code duplication, but refactoring would make things worse.
// However, we don't need to report diagnostics here. They will be reported when analyzing the parent method.
var ignored = DiagnosticBag.GetInstance();
var endIsReachable = ControlFlowPass.Analyze(localSymbol.DeclaringCompilation, localSymbol, block, ignored);
ignored.Free();
if (endIsReachable)
{
if (ImplicitReturnIsOkay(localSymbol))
{
block = FlowAnalysisPass.AppendImplicitReturn(block, localSymbol);
}
else
{
blockDiagnostics.Add(ErrorCode.ERR_ReturnExpected, localSymbol.GetFirstLocation(), localSymbol);
}
}
}
return block;
}
}
private bool ImplicitReturnIsOkay(MethodSymbol method)
{
return method.ReturnsVoid || method.IsIterator || method.IsAsyncEffectivelyReturningTask(this.Compilation);
}
public BoundStatement BindExpressionStatement(ExpressionStatementSyntax node, BindingDiagnosticBag diagnostics)
{
return BindExpressionStatement(node, node.Expression, node.AllowsAnyExpression, diagnostics);
}
private BoundExpressionStatement BindExpressionStatement(CSharpSyntaxNode node, ExpressionSyntax syntax, bool allowsAnyExpression, BindingDiagnosticBag diagnostics)
{
BoundExpressionStatement expressionStatement;
var expression = BindRValueWithoutTargetType(syntax, diagnostics);
ReportSuppressionIfNeeded(expression, diagnostics);
if (!allowsAnyExpression && !IsValidStatementExpression(syntax, expression))
{
if (!node.HasErrors)
{
Error(diagnostics, ErrorCode.ERR_IllegalStatement, syntax);
}
expressionStatement = new BoundExpressionStatement(node, expression, hasErrors: true);
}
else
{
expressionStatement = new BoundExpressionStatement(node, expression);
}
CheckForUnobservedAwaitable(expression, diagnostics);
return expressionStatement;
}
/// <summary>
/// Report an error if this is an awaitable async method invocation that is not being awaited.
/// </summary>
/// <remarks>
/// The checks here are equivalent to StatementBinder::CheckForUnobservedAwaitable() in the native compiler.
/// </remarks>
private void CheckForUnobservedAwaitable(BoundExpression expression, BindingDiagnosticBag diagnostics)
{
if (CouldBeAwaited(expression))
{
Error(diagnostics, ErrorCode.WRN_UnobservedAwaitableExpression, expression.Syntax);
}
}
internal BoundStatement BindLocalDeclarationStatement(LocalDeclarationStatementSyntax node, BindingDiagnosticBag diagnostics)
{
if (node.UsingKeyword != default)
{
return BindUsingDeclarationStatementParts(node, diagnostics);
}
else
{
return BindDeclarationStatementParts(node, diagnostics);
}
}
private BoundStatement BindUsingDeclarationStatementParts(LocalDeclarationStatementSyntax node, BindingDiagnosticBag diagnostics)
{
var usingDeclaration = UsingStatementBinder.BindUsingStatementOrDeclarationFromParts(node, node.UsingKeyword, node.AwaitKeyword, originalBinder: this, usingBinderOpt: null, diagnostics);
Debug.Assert(usingDeclaration is BoundUsingLocalDeclarations);
return usingDeclaration;
}
private BoundStatement BindDeclarationStatementParts(LocalDeclarationStatementSyntax node, BindingDiagnosticBag diagnostics)
{
var typeSyntax = node.Declaration.Type;
bool isConst = node.IsConst;
if (typeSyntax is ScopedTypeSyntax scopedType)
{
// Check for support for 'scoped'.
ModifierUtils.CheckScopedModifierAvailability(node, scopedType.ScopedKeyword, diagnostics);
typeSyntax = scopedType.Type;
}
// Slightly odd, but we unwrap ref here (and report a lang-version diagnostic when appropriate). Ideally,
// this would be in the constructor of SourceLocalSymbol, but it lacks a diagnostics bag passed to it to add
// this diagnostic.
typeSyntax = typeSyntax.SkipRefInLocalOrReturn(diagnostics, out _);
bool isVar;
AliasSymbol alias;
TypeWithAnnotations declType = BindVariableTypeWithAnnotations(node.Declaration, diagnostics, typeSyntax, ref isConst, isVar: out isVar, alias: out alias);
var kind = isConst ? LocalDeclarationKind.Constant : LocalDeclarationKind.RegularVariable;
var variableList = node.Declaration.Variables;
int variableCount = variableList.Count;
if (variableCount == 1)
{
return BindVariableDeclaration(kind, isVar, variableList[0], typeSyntax, declType, alias, diagnostics, includeBoundType: true, associatedSyntaxNode: node);
}
else
{
BoundLocalDeclaration[] boundDeclarations = new BoundLocalDeclaration[variableCount];
int i = 0;
foreach (var variableDeclarationSyntax in variableList)
{
bool includeBoundType = i == 0; //To avoid duplicated expressions, only the first declaration should contain the bound type.
boundDeclarations[i++] = BindVariableDeclaration(kind, isVar, variableDeclarationSyntax, typeSyntax, declType, alias, diagnostics, includeBoundType);
}
return new BoundMultipleLocalDeclarations(node, boundDeclarations.AsImmutableOrNull());
}
}
/// <summary>
/// Checks for a Dispose method on <paramref name="expr"/> and returns its <see cref="MethodSymbol"/> if found.
/// </summary>
/// <param name="expr">Expression on which to perform lookup</param>
/// <param name="syntaxNode">The syntax node to perform lookup on</param>
/// <param name="diagnostics">Populated with invocation errors, and warnings of near misses</param>
/// <returns>The <see cref="MethodSymbol"/> of the Dispose method if one is found, otherwise null.</returns>
internal MethodSymbol TryFindDisposePatternMethod(BoundExpression expr, SyntaxNode syntaxNode, bool hasAwait, BindingDiagnosticBag diagnostics)
{
Debug.Assert(expr is object);
Debug.Assert(expr.Type is object);
Debug.Assert(expr.Type.IsRefLikeType || hasAwait); // pattern dispose lookup is only valid on ref structs or asynchronous usings
var result = PerformPatternMethodLookup(expr,
hasAwait ? WellKnownMemberNames.DisposeAsyncMethodName : WellKnownMemberNames.DisposeMethodName,
syntaxNode,
diagnostics,
out var disposeMethod);
if (disposeMethod?.IsExtensionMethod == true)
{
// Extension methods should just be ignored, rather than rejected after-the-fact
// Tracked by https://github.com/dotnet/roslyn/issues/32767
// extension methods do not contribute to pattern-based disposal
disposeMethod = null;
}
else if ((!hasAwait && disposeMethod?.ReturnsVoid == false)
|| result == PatternLookupResult.NotAMethod)
{
CompoundUseSiteInfo<AssemblySymbol> useSiteInfo = GetNewCompoundUseSiteInfo(diagnostics);
if (this.IsAccessible(disposeMethod, ref useSiteInfo))
{
diagnostics.Add(ErrorCode.WRN_PatternBadSignature, syntaxNode.Location, expr.Type, MessageID.IDS_Disposable.Localize(), disposeMethod);
}
diagnostics.Add(syntaxNode, useSiteInfo);
disposeMethod = null;
}
return disposeMethod;
}
private TypeWithAnnotations BindVariableTypeWithAnnotations(CSharpSyntaxNode declarationNode, BindingDiagnosticBag diagnostics, TypeSyntax typeSyntax, ref bool isConst, out bool isVar, out AliasSymbol alias)
{
Debug.Assert(
declarationNode is VariableDesignationSyntax ||
declarationNode.Kind() == SyntaxKind.VariableDeclaration ||
declarationNode.Kind() == SyntaxKind.DeclarationExpression ||
declarationNode.Kind() == SyntaxKind.DiscardDesignation);
// If the type is "var" then suppress errors when binding it. "var" might be a legal type
// or it might not; if it is not then we do not want to report an error. If it is, then
// we want to treat the declaration as an explicitly typed declaration.
Debug.Assert(typeSyntax is not ScopedTypeSyntax);
TypeWithAnnotations declType = BindTypeOrVarKeyword(typeSyntax.SkipScoped(out _).SkipRef(), diagnostics, out isVar, out alias);
Debug.Assert(declType.HasType || isVar);
if (isVar)
{
// There are a number of ways in which a var decl can be illegal, but in these
// cases we should report an error and then keep right on going with the inference.
if (isConst)
{
Error(diagnostics, ErrorCode.ERR_ImplicitlyTypedVariableCannotBeConst, declarationNode);
// Keep processing it as a non-const local.
isConst = false;
}
// In the dev10 compiler the error recovery semantics for the illegal case
// "var x = 10, y = 123.4;" are somewhat undesirable.
//
// First off, this is an error because a straw poll of language designers and
// users showed that there was no consensus on whether the above should mean
// "double x = 10, y = 123.4;", taking the best type available and substituting
// that for "var", or treating it as "var x = 10; var y = 123.4;" -- since there
// was no consensus we decided to simply make it illegal.
//
// In dev10 for error recovery in the IDE we do an odd thing -- we simply take
// the type of the first variable and use it. So that is "int x = 10, y = 123.4;".
//
// This seems less than ideal. In the error recovery scenario it probably makes
// more sense to treat that as "var x = 10; var y = 123.4;" and do each inference
// separately.
if (declarationNode.Parent.Kind() == SyntaxKind.LocalDeclarationStatement &&
((VariableDeclarationSyntax)declarationNode).Variables.Count > 1 && !declarationNode.HasErrors)
{
Error(diagnostics, ErrorCode.ERR_ImplicitlyTypedVariableMultipleDeclarator, declarationNode);
}
}
else
{
// In the native compiler when given a situation like
//
// D[] x;
//
// where D is a static type we report both that D cannot be an element type
// of an array, and that D[] is not a valid type for a local variable.
// This seems silly; the first error is entirely sufficient. We no longer
// produce additional errors for local variables of arrays of static types.
if (declType.IsStatic)
{
Error(diagnostics, ErrorCode.ERR_VarDeclIsStaticClass, typeSyntax, declType.Type);
}
if (isConst && !declType.Type.CanBeConst())
{
Error(diagnostics, ErrorCode.ERR_BadConstType, typeSyntax, declType.Type);
// Keep processing it as a non-const local.
isConst = false;
}
}
return declType;
}
internal BoundExpression BindInferredVariableInitializer(BindingDiagnosticBag diagnostics, RefKind refKind, EqualsValueClauseSyntax initializer,
CSharpSyntaxNode errorSyntax)
{
BindValueKind valueKind;
ExpressionSyntax value;
IsInitializerRefKindValid(initializer, initializer, refKind, diagnostics, out valueKind, out value); // The return value isn't important here; we just want the diagnostics and the BindValueKind
return BindInferredVariableInitializer(diagnostics, value, valueKind, errorSyntax);
}
// The location where the error is reported might not be the initializer.
protected BoundExpression BindInferredVariableInitializer(BindingDiagnosticBag diagnostics, ExpressionSyntax initializer, BindValueKind valueKind, CSharpSyntaxNode errorSyntax)
{
if (initializer == null)
{
if (!errorSyntax.HasErrors)
{
Error(diagnostics, ErrorCode.ERR_ImplicitlyTypedVariableWithNoInitializer, errorSyntax);
}
return null;
}
if (initializer.Kind() == SyntaxKind.ArrayInitializerExpression)
{
var result = BindUnexpectedArrayInitializer((InitializerExpressionSyntax)initializer,
diagnostics, ErrorCode.ERR_ImplicitlyTypedVariableAssignedArrayInitializer, errorSyntax);
return CheckValue(result, valueKind, diagnostics);
}
BoundExpression value = BindValue(initializer, diagnostics, valueKind);
BoundExpression expression = value.Kind is BoundKind.UnboundLambda or BoundKind.MethodGroup ?
BindToInferredDelegateType(value, diagnostics) :
BindToNaturalType(value, diagnostics);
// Certain expressions (null literals, method groups and anonymous functions) have no type of
// their own and therefore cannot be the initializer of an implicitly typed local.
if (!expression.HasAnyErrors && !expression.HasExpressionType())
{
// Cannot assign {0} to an implicitly-typed local variable
Error(diagnostics, ErrorCode.ERR_ImplicitlyTypedVariableAssignedBadValue, errorSyntax, expression.Display);
}
return expression;
}
private static bool IsInitializerRefKindValid(
EqualsValueClauseSyntax initializer,
CSharpSyntaxNode node,
RefKind variableRefKind,
BindingDiagnosticBag diagnostics,
out BindValueKind valueKind,
out ExpressionSyntax value)
{
RefKind expressionRefKind = RefKind.None;
value = initializer?.Value.CheckAndUnwrapRefExpression(diagnostics, out expressionRefKind);
if (variableRefKind == RefKind.None)
{
valueKind = BindValueKind.RValue;
if (expressionRefKind == RefKind.Ref)
{
Error(diagnostics, ErrorCode.ERR_InitializeByValueVariableWithReference, node);
return false;
}
}
else
{
valueKind = variableRefKind == RefKind.RefReadOnly
? BindValueKind.ReadonlyRef
: BindValueKind.RefOrOut;
if (initializer == null)
{
Error(diagnostics, ErrorCode.ERR_ByReferenceVariableMustBeInitialized, node);
return false;
}
else if (expressionRefKind != RefKind.Ref)
{
Error(diagnostics, ErrorCode.ERR_InitializeByReferenceVariableWithValue, node);
return false;
}
}
return true;
}
protected BoundLocalDeclaration BindVariableDeclaration(
LocalDeclarationKind kind,
bool isVar,
VariableDeclaratorSyntax declarator,
TypeSyntax typeSyntax,
TypeWithAnnotations declTypeOpt,
AliasSymbol aliasOpt,
BindingDiagnosticBag diagnostics,
bool includeBoundType,
CSharpSyntaxNode associatedSyntaxNode = null)
{
Debug.Assert(declarator != null);
return BindVariableDeclaration(LocateDeclaredVariableSymbol(declarator, typeSyntax, kind),
kind,
isVar,
declarator,
typeSyntax,
declTypeOpt,
aliasOpt,
diagnostics,
includeBoundType,
associatedSyntaxNode);
}
protected BoundLocalDeclaration BindVariableDeclaration(
SourceLocalSymbol localSymbol,
LocalDeclarationKind kind,
bool isVar,
VariableDeclaratorSyntax declarator,
TypeSyntax typeSyntax,
TypeWithAnnotations declTypeOpt,
AliasSymbol aliasOpt,
BindingDiagnosticBag diagnostics,
bool includeBoundType,
CSharpSyntaxNode associatedSyntaxNode = null)
{
Debug.Assert(declarator != null);
Debug.Assert(declTypeOpt.HasType || isVar);
Debug.Assert(typeSyntax != null);
var localDiagnostics = BindingDiagnosticBag.GetInstance(withDiagnostics: true, diagnostics.AccumulatesDependencies);
// if we are not given desired syntax, we use declarator
associatedSyntaxNode = associatedSyntaxNode ?? declarator;
// Check for variable declaration errors.
// Use the binder that owns the scope for the local because this (the current) binder
// might own nested scope.
bool nameConflict = localSymbol.ScopeBinder.ValidateDeclarationNameConflictsInScope(localSymbol, diagnostics);
bool hasErrors = false;