Fri, 16 Jan 2015 04:50:19 +0100
Replace accessor implementation with direct member state manipulation, by
request https://trac.torproject.org/projects/tor/ticket/9701#comment:32
1 function f(foo) {
2 "use strict";
3 foo.bar;
4 }
6 var actual;
7 try {
8 f();
9 actual = "no error";
10 } catch (x) {
11 actual = (x instanceof TypeError) ? "type error" : "some other error";
12 actual += (/use strict/.test(x)) ? " with directive" : " without directive";
13 }
15 reportCompare("type error without directive", actual,
16 "decompiled expressions in error messages should not include directive prologues");