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

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

Issue 1145243013: Check for duplicate library names (Closed) Base URL: https://github.com/dart-lang/dev_compiler.git@master
Patch Set: Address comments 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
« no previous file with comments | « test/codegen/expect/methods.js ('k') | test/codegen/expect/names.js » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 var misc = dart.defineLibrary(misc, {}); 1 dart.library('misc', null, /* Imports */[
2 var core = dart.import(core); 2 'dart/core'
3 (function(exports, core) { 3 ], /* Lazy imports */[
4 ], function(exports, core) {
4 'use strict'; 5 'use strict';
5 class _Uninitialized extends core.Object { 6 class _Uninitialized extends core.Object {
6 _Uninitialized() { 7 _Uninitialized() {
7 } 8 }
8 } 9 }
9 dart.setSignature(_Uninitialized, { 10 dart.setSignature(_Uninitialized, {
10 constructors: () => ({_Uninitialized: [_Uninitialized, []]}) 11 constructors: () => ({_Uninitialized: [_Uninitialized, []]})
11 }); 12 });
12 let UNINITIALIZED = dart.const(new _Uninitialized()); 13 let UNINITIALIZED = dart.const(new _Uninitialized());
13 let Generic$ = dart.generic(function(T) { 14 let Generic$ = dart.generic(function(T) {
(...skipping 13 matching lines...) Expand all
27 core.print(dart.equals(x, core.Object)); 28 core.print(dart.equals(x, core.Object));
28 core.print(dart.equals(x, Generic)); 29 core.print(dart.equals(x, Generic));
29 core.print(new (Generic$(core.int))().type); 30 core.print(new (Generic$(core.int))().type);
30 } 31 }
31 dart.fn(main); 32 dart.fn(main);
32 // Exports: 33 // Exports:
33 exports.UNINITIALIZED = UNINITIALIZED; 34 exports.UNINITIALIZED = UNINITIALIZED;
34 exports.Generic$ = Generic$; 35 exports.Generic$ = Generic$;
35 exports.Generic = Generic; 36 exports.Generic = Generic;
36 exports.main = main; 37 exports.main = main;
37 })(misc, core); 38 });
OLDNEW
« no previous file with comments | « test/codegen/expect/methods.js ('k') | test/codegen/expect/names.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698