1
Vote

13.1-3-3-s to 13.1-3-12s should have return statement

description

these test's
catch (e) { e instanceof SyntaxError }
 
is no return value.
should be
catch (e) { return e instanceof SyntaxError }

comments

paulbartrum wrote Dec 8, 2010 at 12:10 AM

Duplicate of issue #29100