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

Side by Side Diff: test/codegen/es6_modules.dart

Issue 1612083002: Initial --modules=es6 support (Closed) Base URL: git@github.com:dart-lang/dev_compiler.git@master
Patch Set: addressed comments (legacy, doc) + test enum utils 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 unified diff | Download patch
« no previous file with comments | « test/all_tests.dart ('k') | test/codegen/expect/es6_modules.js » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 library test;
2
3 import 'dart:js';
4
5 typedef void Callback({int i});
6
7 class A {}
8 class _A {}
9 class B<T> {}
10 class _B<T> {}
11
12 f() {}
13 _f() {}
14
15 const String constant = "abc";
16 final String finalConstant = "abc";
17 final String lazy = (() {
18 print('lazy');
19 return "abc";
20 })();
21 String mutable = "abc";
22 String lazyMutable = (() {
23 print('lazyMutable');
24 return "abc";
25 })();
OLDNEW
« no previous file with comments | « test/all_tests.dart ('k') | test/codegen/expect/es6_modules.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698