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

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

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

Powered by Google App Engine
This is Rietveld 408576698