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

Side by Side Diff: test/codegen_expected/js/js.js

Issue 2234343003: fix #620, infer the input files from sources (Closed) Base URL: git@github.com:dart-lang/dev_compiler.git@master
Patch Set: fix Created 4 years, 4 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
(Empty)
1 dart_library.library('js', null, /* Imports */[
2 'dart_sdk'
3 ], function load__js(exports, dart_sdk) {
4 'use strict';
5 const core = dart_sdk.core;
6 const js = dart_sdk.js;
7 const dart = dart_sdk.dart;
8 const dartx = dart_sdk.dartx;
9 const js$ = Object.create(null);
10 js$.JS = class JS extends core.Object {
11 new(name) {
12 if (name === void 0) name = null;
13 this.name = name;
14 }
15 };
16 dart.setSignature(js$.JS, {
17 constructors: () => ({new: dart.definiteFunctionType(js$.JS, [], [core.Strin g])})
18 });
19 js$._Anonymous = class _Anonymous extends core.Object {
20 new() {
21 }
22 };
23 dart.setSignature(js$._Anonymous, {
24 constructors: () => ({new: dart.definiteFunctionType(js$._Anonymous, [])})
25 });
26 js$.anonymous = dart.const(new js$._Anonymous());
27 js$.allowInteropCaptureThis = js.allowInteropCaptureThis;
28 js$.allowInterop = js.allowInterop;
29 // Exports:
30 exports.js = js$;
31 });
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698