OLD | NEW |
(Empty) | |
| 1 dart_library.library('language/try_catch_syntax_test_none_multi', null, /* Impor
ts */[ |
| 2 'dart_sdk' |
| 3 ], function load__try_catch_syntax_test_none_multi(exports, dart_sdk) { |
| 4 'use strict'; |
| 5 const core = dart_sdk.core; |
| 6 const dart = dart_sdk.dart; |
| 7 const dartx = dart_sdk.dartx; |
| 8 const try_catch_syntax_test_none_multi = Object.create(null); |
| 9 let VoidTodynamic = () => (VoidTodynamic = dart.constFn(dart.definiteFunctionT
ype(dart.dynamic, [])))(); |
| 10 try_catch_syntax_test_none_multi.main = function() { |
| 11 try_catch_syntax_test_none_multi.testMissingCatch(); |
| 12 try_catch_syntax_test_none_multi.testMissingTry(); |
| 13 try_catch_syntax_test_none_multi.testDuplicateCatchVariable(); |
| 14 try_catch_syntax_test_none_multi.testIllegalFinally(); |
| 15 try_catch_syntax_test_none_multi.testIllegalCatch(); |
| 16 try_catch_syntax_test_none_multi.testIllegalRethrow(); |
| 17 }; |
| 18 dart.fn(try_catch_syntax_test_none_multi.main, VoidTodynamic()); |
| 19 try_catch_syntax_test_none_multi.testMissingCatch = function() { |
| 20 }; |
| 21 dart.fn(try_catch_syntax_test_none_multi.testMissingCatch, VoidTodynamic()); |
| 22 try_catch_syntax_test_none_multi.testMissingTry = function() { |
| 23 }; |
| 24 dart.fn(try_catch_syntax_test_none_multi.testMissingTry, VoidTodynamic()); |
| 25 try_catch_syntax_test_none_multi.testDuplicateCatchVariable = function() { |
| 26 }; |
| 27 dart.fn(try_catch_syntax_test_none_multi.testDuplicateCatchVariable, VoidTodyn
amic()); |
| 28 try_catch_syntax_test_none_multi.testIllegalFinally = function() { |
| 29 }; |
| 30 dart.fn(try_catch_syntax_test_none_multi.testIllegalFinally, VoidTodynamic()); |
| 31 try_catch_syntax_test_none_multi.testIllegalCatch = function() { |
| 32 }; |
| 33 dart.fn(try_catch_syntax_test_none_multi.testIllegalCatch, VoidTodynamic()); |
| 34 try_catch_syntax_test_none_multi.testIllegalRethrow = function() { |
| 35 }; |
| 36 dart.fn(try_catch_syntax_test_none_multi.testIllegalRethrow, VoidTodynamic()); |
| 37 // Exports: |
| 38 exports.try_catch_syntax_test_none_multi = try_catch_syntax_test_none_multi; |
| 39 }); |
OLD | NEW |