354a4ec420
Change-Id: I6529a9ac0ad6557dc751be5c6f7bf14c9d45f909 Reviewed-on: https://dart-review.googlesource.com/11400 Commit-Queue: Florian Loitsch <floitsch@google.com> Reviewed-by: Jakob Roland Andersen <jakobr@google.com>
48 lines
891 B
Dart
48 lines
891 B
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.
|
|
|
|
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.
|
|
var d = b + c;
|
|
// Shadow declaration of 'a'.
|
|
var a = 5; //# 01: compile-time error
|
|
return d + a;
|
|
}
|
|
}
|
|
|
|
main() {
|
|
testSimpleScope();
|
|
testShadowingScope();
|
|
testShadowingAfterUse();
|
|
}
|