OLD | NEW |
(Empty) | |
| 1 dart_library.library('language/interface_constants_test', null, /* Imports */[ |
| 2 'dart_sdk', |
| 3 'expect' |
| 4 ], function load__interface_constants_test(exports, dart_sdk, expect) { |
| 5 'use strict'; |
| 6 const core = dart_sdk.core; |
| 7 const dart = dart_sdk.dart; |
| 8 const dartx = dart_sdk.dartx; |
| 9 const expect$ = expect.expect; |
| 10 const interface_constants_test = Object.create(null); |
| 11 let VoidTodynamic = () => (VoidTodynamic = dart.constFn(dart.definiteFunctionT
ype(dart.dynamic, [])))(); |
| 12 interface_constants_test.Constants = class Constants extends core.Object {}; |
| 13 interface_constants_test.Constants.FIVE = 5; |
| 14 interface_constants_test.InterfaceConstantsTest = class InterfaceConstantsTest
extends core.Object { |
| 15 new() { |
| 16 } |
| 17 static testMain() { |
| 18 expect$.Expect.equals(5, interface_constants_test.Constants.FIVE); |
| 19 } |
| 20 }; |
| 21 dart.setSignature(interface_constants_test.InterfaceConstantsTest, { |
| 22 constructors: () => ({new: dart.definiteFunctionType(interface_constants_tes
t.InterfaceConstantsTest, [])}), |
| 23 statics: () => ({testMain: dart.definiteFunctionType(dart.void, [])}), |
| 24 names: ['testMain'] |
| 25 }); |
| 26 interface_constants_test.main = function() { |
| 27 interface_constants_test.InterfaceConstantsTest.testMain(); |
| 28 }; |
| 29 dart.fn(interface_constants_test.main, VoidTodynamic()); |
| 30 // Exports: |
| 31 exports.interface_constants_test = interface_constants_test; |
| 32 }); |
OLD | NEW |