OLD | NEW |
(Empty) | |
| 1 dart_library.library('language/ternary_test', null, /* Imports */[ |
| 2 'dart_sdk', |
| 3 'expect' |
| 4 ], function load__ternary_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 ternary_test = Object.create(null); |
| 11 let VoidTodynamic = () => (VoidTodynamic = dart.constFn(dart.definiteFunctionT
ype(dart.dynamic, [])))(); |
| 12 ternary_test.TernaryTest = class TernaryTest extends core.Object { |
| 13 static true_cond() { |
| 14 return true; |
| 15 } |
| 16 static false_cond() { |
| 17 return false; |
| 18 } |
| 19 static foo() { |
| 20 return -4; |
| 21 } |
| 22 static moo() { |
| 23 return 5; |
| 24 } |
| 25 static testMain() { |
| 26 expect$.Expect.equals(-4, dart.test(ternary_test.TernaryTest.true_cond())
? ternary_test.TernaryTest.foo() : ternary_test.TernaryTest.moo()); |
| 27 expect$.Expect.equals(5, dart.test(ternary_test.TernaryTest.false_cond())
? ternary_test.TernaryTest.foo() : ternary_test.TernaryTest.moo()); |
| 28 } |
| 29 }; |
| 30 dart.setSignature(ternary_test.TernaryTest, { |
| 31 statics: () => ({ |
| 32 true_cond: dart.definiteFunctionType(dart.dynamic, []), |
| 33 false_cond: dart.definiteFunctionType(dart.dynamic, []), |
| 34 foo: dart.definiteFunctionType(dart.dynamic, []), |
| 35 moo: dart.definiteFunctionType(dart.dynamic, []), |
| 36 testMain: dart.definiteFunctionType(dart.dynamic, []) |
| 37 }), |
| 38 names: ['true_cond', 'false_cond', 'foo', 'moo', 'testMain'] |
| 39 }); |
| 40 ternary_test.main = function() { |
| 41 ternary_test.TernaryTest.testMain(); |
| 42 }; |
| 43 dart.fn(ternary_test.main, VoidTodynamic()); |
| 44 // Exports: |
| 45 exports.ternary_test = ternary_test; |
| 46 }); |
OLD | NEW |