Files
babel/packages/babel-plugin-transform-block-scoping/test/fixtures/general/function-in-catch/expected.js

8 lines
82 B
JavaScript

try {
foo();
} catch (x) {
var harmless = function (x) {
return x;
};
}