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

Side by Side Diff: test/codegen/expect/language/proxy2_test_03_multi.js

Issue 2128353002: Check in codegen test expectations. (Closed) Base URL: git@github.com:dart-lang/dev_compiler.git@master
Patch Set: Created 4 years, 5 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('language/proxy2_test_03_multi', null, /* Imports */[
2 'dart_sdk'
3 ], function load__proxy2_test_03_multi(exports, dart_sdk) {
4 'use strict';
5 const core = dart_sdk.core;
6 const dart = dart_sdk.dart;
7 const dartx = dart_sdk.dartx;
8 const proxy2_test_03_multi = Object.create(null);
9 let VoidTodynamic = () => (VoidTodynamic = dart.constFn(dart.definiteFunctionT ype(dart.dynamic, [])))();
10 proxy2_test_03_multi.Fake = class Fake extends core.Object {
11 new() {
12 }
13 };
14 dart.setSignature(proxy2_test_03_multi.Fake, {
15 constructors: () => ({new: dart.definiteFunctionType(proxy2_test_03_multi.Fa ke, [])})
16 });
17 proxy2_test_03_multi.proxy = dart.const(new proxy2_test_03_multi.Fake());
18 proxy2_test_03_multi.WrongProxy = class WrongProxy extends core.Object {};
19 proxy2_test_03_multi.PrefixProxy = class PrefixProxy extends core.Object {};
20 proxy2_test_03_multi.main = function() {
21 try {
22 dart.dload(new proxy2_test_03_multi.PrefixProxy(), 'foo');
23 } catch (e) {
24 }
25
26 };
27 dart.fn(proxy2_test_03_multi.main, VoidTodynamic());
28 // Exports:
29 exports.proxy2_test_03_multi = proxy2_test_03_multi;
30 });
OLDNEW
« no previous file with comments | « test/codegen/expect/language/proxy2_test_02_multi.js ('k') | test/codegen/expect/language/proxy2_test_04_multi.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698