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

Unified Diff: test/codegen/expect/es6_modules.js

Issue 1636233002: fixes #427, static fields emitted outside the scope of their class (Closed) Base URL: git@github.com:dart-lang/dev_compiler.git@master
Patch Set: merged2 Created 4 years, 11 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
« no previous file with comments | « test/codegen/expect/collection/wrappers.txt ('k') | test/codegen/expect/fieldtest.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/codegen/expect/es6_modules.js
diff --git a/test/codegen/expect/es6_modules.js b/test/codegen/expect/es6_modules.js
index 22683e5330f9438f282daf77339b7c8b612d802c..e96218a8c70d195b21da8a1c4dcbcf1ba571d9bb 100644
--- a/test/codegen/expect/es6_modules.js
+++ b/test/codegen/expect/es6_modules.js
@@ -23,14 +23,16 @@ function _f() {
dart.fn(_f);
const constant = "abc";
exports.finalConstant = "abc";
-exports.mutable = "abc";
dart.defineLazyProperties(exports, {
get lazy() {
return dart.as(dart.fn(() => {
core.print('lazy');
return "abc";
})(), core.String);
- },
+ }
+});
+exports.mutable = "abc";
+dart.defineLazyProperties(exports, {
get lazyMutable() {
return dart.as(dart.fn(() => {
core.print('lazyMutable');
« no previous file with comments | « test/codegen/expect/collection/wrappers.txt ('k') | test/codegen/expect/fieldtest.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698