summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/language/statements/try/12.14-13.js
diff options
context:
space:
mode:
Diffstat (limited to 'js/src/tests/test262/language/statements/try/12.14-13.js')
-rw-r--r--js/src/tests/test262/language/statements/try/12.14-13.js36
1 files changed, 36 insertions, 0 deletions
diff --git a/js/src/tests/test262/language/statements/try/12.14-13.js b/js/src/tests/test262/language/statements/try/12.14-13.js
new file mode 100644
index 0000000000..b04aae5e59
--- /dev/null
+++ b/js/src/tests/test262/language/statements/try/12.14-13.js
@@ -0,0 +1,36 @@
+// Copyright (c) 2012 Ecma International. All rights reserved.
+// This code is governed by the BSD license found in the LICENSE file.
+
+/*---
+es5id: 12.14-13
+description: catch introduces scope - updates are based on scope
+flags: [noStrict]
+---*/
+
+ var res1 = false;
+ var res2 = false;
+ var res3 = false;
+
+(function() {
+ var x_12_14_13 = 'local';
+
+ 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');
+})();
+
+assert(res1, 'res1 !== true');
+assert(res2, 'res2 !== true');
+assert(res3, 'res3 !== true');
+
+reportCompare(0, 0);