(a)
| 5 | // Flags: --allow-natives-syntax |
| 6 | |
| 7 | function bar(a) { |
| 8 | function in_bar(a, b) { |
| 9 | a % b; // This emit a generic mod that can throw. |
| 10 | return a; |
| 11 | } |
| 12 | %PrepareFunctionForOptimization(in_bar); |
| 13 | in_bar({}); |
| 14 | if (a) { |
| 15 | throw_before_this_function_is_not_defined(); |
| 16 | } |
| 17 | } |
| 18 | |
| 19 | function foo() { |
| 20 | try { |