0aa5cbd128
also simplifies build of packages used by our tests this caused a bunch of tests that use parts to start passing R=nweiz@google.com Review URL: https://codereview.chromium.org/2234343003 .
16 lines
563 B
JavaScript
16 lines
563 B
JavaScript
dart_library.library('language/application_test', null, /* Imports */[
|
|
'dart_sdk'
|
|
], function load__application_test(exports, dart_sdk) {
|
|
'use strict';
|
|
const core = dart_sdk.core;
|
|
const dart = dart_sdk.dart;
|
|
const dartx = dart_sdk.dartx;
|
|
const application_test = Object.create(null);
|
|
let VoidTodynamic = () => (VoidTodynamic = dart.constFn(dart.definiteFunctionType(dart.dynamic, [])))();
|
|
application_test.main = function() {
|
|
};
|
|
dart.fn(application_test.main, VoidTodynamic());
|
|
// Exports:
|
|
exports.application_test = application_test;
|
|
});
|