b101a7d002
Change-Id: Ib33169c3e0ffc870915c189404074a1dea472546 Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/196548 Reviewed-by: Bob Nystrom <rnystrom@google.com> Commit-Queue: Leaf Petersen <leafp@google.com>
54 lines
1.0 KiB
Dart
54 lines
1.0 KiB
Dart
// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
|
|
// for details. All rights reserved. Use of this source code is governed by a
|
|
// BSD-style license that can be found in the LICENSE file.
|
|
|
|
// @dart = 2.9
|
|
|
|
import "package:expect/expect.dart";
|
|
|
|
void testSimpleScope() {
|
|
{
|
|
var a = "Test";
|
|
int b = 1;
|
|
}
|
|
{
|
|
var c;
|
|
int d;
|
|
Expect.isNull(c);
|
|
Expect.isNull(d);
|
|
}
|
|
}
|
|
|
|
void testShadowingScope() {
|
|
var a = "Test";
|
|
{
|
|
var a;
|
|
Expect.isNull(a);
|
|
a = "a";
|
|
Expect.equals(a, "a");
|
|
}
|
|
Expect.equals(a, "Test");
|
|
}
|
|
|
|
int testShadowingAfterUse() {
|
|
var a = 1;
|
|
{
|
|
var b = 2;
|
|
var c = a; // Use of 'a' prior to its shadow declaration below.
|
|
// ^
|
|
// [analyzer] COMPILE_TIME_ERROR.REFERENCED_BEFORE_DECLARATION
|
|
var d = b + c;
|
|
// Shadow declaration of 'a'.
|
|
var a = 5;
|
|
// ^
|
|
// [cfe] Can't declare 'a' because it was already used in this scope.
|
|
return d + a;
|
|
}
|
|
}
|
|
|
|
main() {
|
|
testSimpleScope();
|
|
testShadowingScope();
|
|
testShadowingAfterUse();
|
|
}
|