mirror of https://github.com/tc39/test262.git
Renamed a couple of files.
This commit is contained in:
parent
44234c8954
commit
2a112abbd5
|
@ -5,12 +5,12 @@
|
||||||
/// copyright and this notice and otherwise comply with the Use Terms.
|
/// copyright and this notice and otherwise comply with the Use Terms.
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @path ch13/13.0/13_4-17gs.js
|
* @path ch13/13.0/13.0_4-17gs.js
|
||||||
* @description Strict Mode - SourceElements is evaluated as strict mode code when a Function constructor is contained in strict mode code
|
* @description Strict Mode - SourceElements is not evaluated as strict mode code when a Function constructor is contained in strict mode code
|
||||||
* @onlyStrict
|
* @onlyStrict
|
||||||
* @negative NotEarlyError
|
* @negative NotEarlyError
|
||||||
*/
|
*/
|
||||||
|
|
||||||
"use strict";
|
"use strict";
|
||||||
var _13_4_17_fun = new Function('eval = 42;');
|
var _13_0_4_17_fun = new Function('eval = 42;');
|
||||||
throw NotEarlyError;
|
throw NotEarlyError;
|
|
@ -5,7 +5,7 @@
|
||||||
/// copyright and this notice and otherwise comply with the Use Terms.
|
/// 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
|
* @description Strict Mode - SourceElements is evaluated as strict mode code when a FunctionDeclaration is contained in strict mode code
|
||||||
* @onlyStrict
|
* @onlyStrict
|
||||||
* @negative ^((?!NotEarlyError).)*$
|
* @negative ^((?!NotEarlyError).)*$
|
File diff suppressed because one or more lines are too long
Loading…
Reference in New Issue