Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(970)

Unified Diff: tests/language/deferred_global_lib.dart

Issue 646083002: dart2js: Fast fix for deferred globals. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: More comments. Created 6 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: tests/language/deferred_global_lib.dart
diff --git a/tests/language/deferred_global_lib.dart b/tests/language/deferred_global_lib.dart
new file mode 100644
index 0000000000000000000000000000000000000000..be4a001946758084f8df05bb4b2053a51f2a976e
--- /dev/null
+++ b/tests/language/deferred_global_lib.dart
@@ -0,0 +1,24 @@
+// Copyright (c) 2014, 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.
+
+var sideEffectCounter = 0;
+
+final finalConstGlobal = "finalConstGlobal";
+final finalNonConstGlobal = (() {
+ sideEffectCounter++;
+ return "finalNonConstGlobal";
+}());
+
+var lazyConstGlobal = "lazyConstGlobal";
+var lazyNonConstGlobal = (() {
+ sideEffectCounter++;
+ return "lazyNonConstGlobal";
+}());
+
+readFinalConstGlobal() => finalConstGlobal;
+readFinalNonConstGlobal() => finalNonConstGlobal;
+readLazyConstGlobal() => lazyConstGlobal;
+readLazyNonConstGlobal() => lazyNonConstGlobal;
+writeLazyConstGlobal(x) { lazyConstGlobal = x; }
+writeLazyNonConstGlobal(x) { lazyNonConstGlobal = x; }

Powered by Google App Engine
This is Rietveld 408576698