OLD | NEW |
(Empty) | |
| 1 dart_library.library('language/deopt_inlined_function_lazy_test', null, /* Impor
ts */[ |
| 2 'dart_sdk', |
| 3 'expect' |
| 4 ], function load__deopt_inlined_function_lazy_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 deopt_inlined_function_lazy_test = Object.create(null); |
| 11 let dynamicTodynamic = () => (dynamicTodynamic = dart.constFn(dart.definiteFun
ctionType(dart.dynamic, [dart.dynamic])))(); |
| 12 let VoidTodynamic = () => (VoidTodynamic = dart.constFn(dart.definiteFunctionT
ype(dart.dynamic, [])))(); |
| 13 deopt_inlined_function_lazy_test.call_native = function(x) { |
| 14 try { |
| 15 return dart.dsend(x, '+', 12342353257893275483274832); |
| 16 } finally { |
| 17 } |
| 18 }; |
| 19 dart.fn(deopt_inlined_function_lazy_test.call_native, dynamicTodynamic()); |
| 20 deopt_inlined_function_lazy_test.bar = function(x) { |
| 21 if (dart.test(dart.dsend(x, '<', 0))) deopt_inlined_function_lazy_test.call_
native(x); |
| 22 x = 42; |
| 23 return x; |
| 24 }; |
| 25 dart.fn(deopt_inlined_function_lazy_test.bar, dynamicTodynamic()); |
| 26 deopt_inlined_function_lazy_test.foo = function(x) { |
| 27 x = deopt_inlined_function_lazy_test.bar(x); |
| 28 return x; |
| 29 }; |
| 30 dart.fn(deopt_inlined_function_lazy_test.foo, dynamicTodynamic()); |
| 31 deopt_inlined_function_lazy_test.main = function() { |
| 32 expect$.Expect.equals(42, deopt_inlined_function_lazy_test.foo(1)); |
| 33 for (let i = 0; i < 20; i++) |
| 34 deopt_inlined_function_lazy_test.foo(7); |
| 35 expect$.Expect.equals(42, deopt_inlined_function_lazy_test.foo(2)); |
| 36 expect$.Expect.equals(42, deopt_inlined_function_lazy_test.foo(-1)); |
| 37 }; |
| 38 dart.fn(deopt_inlined_function_lazy_test.main, VoidTodynamic()); |
| 39 // Exports: |
| 40 exports.deopt_inlined_function_lazy_test = deopt_inlined_function_lazy_test; |
| 41 }); |
OLD | NEW |