Files
sdk/tests/language/const_list_test.dart
T
asgerf@google.com bd3255ed6a dart2dart: Support for all constants in new backend.
Adds support for:
- Type literals
- By-value reference to top-level or static function
- Const constructor invocation inside const literal list or map

Nested const expressions are linearized to LetPrims, and we rely on the dart_tree to inline all primitives (since non-const variable references may not occur in a const expression).

There are still a bunch of constants that we support but don't actually treat as constants. Reference to top-level constants are still treated as a getter invocations, for instance.

We bail out on local constant declarations since they must either be inlined at multiple places or we must generate a constant declaration for them.

BUG=
R=kmillikin@google.com, sigurdm@google.com

Review URL: https://codereview.chromium.org//348053002

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@37585 260f80e4-7a28-3924-810f-c04153c831b5
2014-06-23 08:46:08 +00:00

53 lines
1.6 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.
import "package:expect/expect.dart";
class ConstListTest {
static testConstructors() {
List fixedList = new List(4);
List fixedList2 = new List(4);
List growableList = new List();
List growableList2 = new List();
for (int i = 0; i < 4; i++) {
fixedList[i] = i;
fixedList2[i] = i;
growableList.add(i);
growableList2.add(i);
}
Expect.equals(true, growableList == growableList);
Expect.equals(false, growableList == growableList2);
Expect.equals(true, fixedList == fixedList);
Expect.equals(false, fixedList == fixedList2);
Expect.equals(false, fixedList == growableList);
growableList.add(4);
Expect.equals(false, fixedList == growableList);
Expect.equals(4, growableList.removeLast());
Expect.equals(false, fixedList == growableList);
fixedList[3] = 0;
Expect.equals(false, fixedList == growableList);
}
static testLiterals() {
var a = [1, 2, 3.1];
var b = [1, 2, 3.1];
Expect.equals(false, a == b);
a = const [1, 2, 3.1];
b = const [1, 2, 3.1];
Expect.equals(true, a == b);
a = const <num>[1, 2, 3.1];
b = const [1, 2, 3.1];
Expect.equals(false, a == b);
a = const <dynamic>[1, 2, 3.1];
b = const [1, 2, 3.1];
Expect.equals(true, a == b);
}
}
main() {
ConstListTest.testConstructors();
ConstListTest.testLiterals();
}