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

Side by Side Diff: test/codegen/expect/opassign.js

Issue 1145243013: Check for duplicate library names (Closed) Base URL: https://github.com/dart-lang/dev_compiler.git@master
Patch Set: Created 5 years, 6 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
OLDNEW
1 var opassign = dart.defineLibrary(opassign, {}); 1 dart.defineLibrary('opassign');
2 var core = dart.import(core); 2 dart.import('core');
3 (function(exports, core) { 3 (function(exports, core) {
4 'use strict'; 4 'use strict';
5 dart.copyProperties(exports, { 5 dart.copyProperties(exports, {
6 get index() { 6 get index() {
7 core.print('called "index" getter'); 7 core.print('called "index" getter');
8 return 0; 8 return 0;
9 } 9 }
10 }); 10 });
11 dart.defineLazyProperties(exports, { 11 dart.defineLazyProperties(exports, {
12 get _foo() { 12 get _foo() {
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after
48 } 48 }
49 dart.fn(main); 49 dart.fn(main);
50 function forcePostfix(x) { 50 function forcePostfix(x) {
51 } 51 }
52 dart.fn(forcePostfix); 52 dart.fn(forcePostfix);
53 // Exports: 53 // Exports:
54 exports.Foo = Foo; 54 exports.Foo = Foo;
55 exports.main = main; 55 exports.main = main;
56 exports.forcePostfix = forcePostfix; 56 exports.forcePostfix = forcePostfix;
57 })(opassign, core); 57 })(opassign, core);
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698