test262/test/suite/sputnik_converted/12_Statement
David Fugate 7ffad2be3e Several new Sputnik tests included:
if (!strict_mode) { throw new SyntaxError('unspecified case'); }

This doesn't work for a few reasons:
1.  'strict_mode' is undefined in the test case exeuction context. That is, the test framework
    does not force the test case into strict mode
2.  The test case code looks like:
	"use strict";
	if (!strict_mode) ...
        ...
    Note that 'strict_mode' is not set before being accessed

Really the metadata for these test cases should have a "@strict" property added to instruct the test
framework *not* to run the test if an implementation doesn't support strict mode.
2011-07-07 14:31:22 -07:00
..
12.1_Block Several new Sputnik tests included: 2011-07-07 14:31:22 -07:00
12.2_Variable_Statement Fixed Sputnik test 'path' metadata. 2011-06-29 10:04:15 -07:00
12.3_Empty_Statement Fixed Sputnik test 'path' metadata. 2011-06-29 10:04:15 -07:00
12.4_Expression_Statement Fixed Sputnik test 'path' metadata. 2011-06-29 10:04:15 -07:00
12.5_The_if_Statement Several new Sputnik tests included: 2011-07-07 14:31:22 -07:00
12.6_Iteration_Statements Several new Sputnik tests included: 2011-07-07 14:31:22 -07:00
12.7_The_continue_Statement Fixed Sputnik test 'path' metadata. 2011-06-29 10:04:15 -07:00
12.8_The_break_Statement Fixed Sputnik test 'path' metadata. 2011-06-29 10:04:15 -07:00
12.9_The_return_Statement Fixed Sputnik test 'path' metadata. 2011-06-29 10:04:15 -07:00
12.10_The_with_Statement Fixed Sputnik test 'path' metadata. 2011-06-29 10:04:15 -07:00
12.11_The_switch_Statement Fixed Sputnik test 'path' metadata. 2011-06-29 10:04:15 -07:00
12.12_Labelled_Statements Fixed Sputnik test 'path' metadata. 2011-06-29 10:04:15 -07:00
12.13_The_throw_statement Fixed Sputnik test 'path' metadata. 2011-06-29 10:04:15 -07:00
12.14_The_try_Statement Fixed Sputnik test 'path' metadata. 2011-06-29 10:04:15 -07:00