Renamed a couple of files.

This commit is contained in:
David Fugate 2012-03-27 13:01:22 -07:00
parent 44234c8954
commit 2a112abbd5
3 changed files with 5 additions and 5 deletions

View File

@ -5,12 +5,12 @@
/// copyright and this notice and otherwise comply with the Use Terms.
/**
* @path ch13/13.0/13_4-17gs.js
* @description Strict Mode - SourceElements is evaluated as strict mode code when a Function constructor is contained in strict mode code
* @path ch13/13.0/13.0_4-17gs.js
* @description Strict Mode - SourceElements is not evaluated as strict mode code when a Function constructor is contained in strict mode code
* @onlyStrict
* @negative NotEarlyError
*/
"use strict";
var _13_4_17_fun = new Function('eval = 42;');
var _13_0_4_17_fun = new Function('eval = 42;');
throw NotEarlyError;

View File

@ -5,7 +5,7 @@
/// copyright and this notice and otherwise comply with the Use Terms.
/**
* @path ch13/13.0/13_4-5gs.js
* @path ch13/13.0/13.0_4-5gs.js
* @description Strict Mode - SourceElements is evaluated as strict mode code when a FunctionDeclaration is contained in strict mode code
* @onlyStrict
* @negative ^((?!NotEarlyError).)*$

File diff suppressed because one or more lines are too long