Files
sdk/pkg/dev_compiler/test/codegen_expected/language/param1_test.js
T
Leaf Petersen 0315595d60 Check in codegen test expectations.
Codegen output is checked into repository to make codegen regressions
more visible (especially readability regressions).

BUG=
R=rnystrom@google.com

Review URL: https://codereview.chromium.org/2128353002 .
2016-07-07 15:57:22 -07:00

26 lines
834 B
JavaScript

dart_library.library('language/param1_test', null, /* Imports */[
'dart_sdk'
], function load__param1_test(exports, dart_sdk) {
'use strict';
const core = dart_sdk.core;
const dart = dart_sdk.dart;
const dartx = dart_sdk.dartx;
const param1_test = Object.create(null);
let VoidTodynamic = () => (VoidTodynamic = dart.constFn(dart.definiteFunctionType(dart.dynamic, [])))();
param1_test.Param1Test = class Param1Test extends core.Object {
static testMain() {
return 0;
}
};
dart.setSignature(param1_test.Param1Test, {
statics: () => ({testMain: dart.definiteFunctionType(core.int, [])}),
names: ['testMain']
});
param1_test.main = function() {
param1_test.Param1Test.testMain();
};
dart.fn(param1_test.main, VoidTodynamic());
// Exports:
exports.param1_test = param1_test;
});