test262/test/language/statements/try/12.14-13.js

42 lines
1013 B
JavaScript
Raw Normal View History

// Copyright (c) 2012 Ecma International. All rights reserved.
2015-07-17 17:42:45 +02:00
// This code is governed by the BSD license found in the LICENSE file.
/*---
2014-07-25 00:41:42 +02:00
es5id: 12.14-13
description: catch introduces scope - updates are based on scope
includes: [runTestCase.js]
flags: [noStrict]
---*/
function testcase() {
var res1 = false;
var res2 = false;
var res3 = false;
var x_12_14_13 = 'local';
try {
function foo() {
this.x_12_14_13 = 'instance';
}
try {
throw foo;
}
catch (e) {
res1 = (x_12_14_13 === 'local');
e();
res2 = (x_12_14_13 === 'local');
}
res3 = (x_12_14_13 === 'local');
if (res1 === true &&
res2 === true &&
res3 === true) {
return true;
}
} finally {
delete this.x_12_14_13;
}
}
runTestCase(testcase);