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

Side by Side Diff: test/codegen/expect/language/issue4157508_test.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/issue4157508_test', null, /* Imports */[
2 'dart_sdk'
3 ], function load__issue4157508_test(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 issue4157508_test = Object.create(null);
9 let VoidTodynamic = () => (VoidTodynamic = dart.constFn(dart.definiteFunctionT ype(dart.dynamic, [])))();
10 issue4157508_test.Issue4157508Test = class Issue4157508Test extends core.Objec t {
11 new(v) {
12 let d = new core.DateTime.fromMillisecondsSinceEpoch(core.int._check(v), { isUtc: true});
13 }
14 static testMain() {
15 let d = new issue4157508_test.Issue4157508Test(0);
16 }
17 };
18 dart.setSignature(issue4157508_test.Issue4157508Test, {
19 constructors: () => ({new: dart.definiteFunctionType(issue4157508_test.Issue 4157508Test, [dart.dynamic])}),
20 statics: () => ({testMain: dart.definiteFunctionType(dart.void, [])}),
21 names: ['testMain']
22 });
23 issue4157508_test.main = function() {
24 issue4157508_test.Issue4157508Test.testMain();
25 };
26 dart.fn(issue4157508_test.main, VoidTodynamic());
27 // Exports:
28 exports.issue4157508_test = issue4157508_test;
29 });
OLDNEW
« no previous file with comments | « test/codegen/expect/language/issue3806_test.js ('k') | test/codegen/expect/language/issue4295001_test.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698