aboutsummaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
authorMark Miller <erights@gmail.com>2011-09-25 08:40:10 -0700
committerMark Miller <erights@gmail.com>2011-09-25 08:40:10 -0700
commitede572eced27edf38a4672fa131798aab2a247cc (patch)
tree9c50ed082387667b81454e8beb1fec690e0bea2d /tools
parentaa67d8e5ac07a5adac300f7ad3308071da91ce03 (diff)
Fixed EarlyError naming. Accepting and ignoring at-bestPractice.
Added .hgignore
Diffstat (limited to 'tools')
-rw-r--r--tools/converter/convert.js13
1 files changed, 11 insertions, 2 deletions
diff --git a/tools/converter/convert.js b/tools/converter/convert.js
index 5b53e52e1..abee2511f 100644
--- a/tools/converter/convert.js
+++ b/tools/converter/convert.js
@@ -56,7 +56,7 @@
*/
global.GlobalScopeTests = global.GlobalScopeTests || {};
global.EarlyErrorRePat = 'EarlyErrorRePat';
- global.NotEarlyErrorString = 'NotEarlyErrorString';
+ global.NotEarlyErrorString = 'NotEarlyError';
/////////////////////////////////////////////////////////////////
@@ -372,7 +372,16 @@
// If we see any properties other than these after normalization,
// we signal an error.
var KNOWN_PROPS = ['path', 'description',
- 'noStrict', 'onlyStrict', 'negative'];
+ 'noStrict', 'onlyStrict', 'negative',
+
+ // Not yet supported ones that should not be
+ // accepted until they are supported are
+ // commented aout below. Not supported ones that
+ // can safely be present and ignored are enabled
+ // below.
+ // 'generator', 'verbatim',
+ 'noHelpers', 'bestPractice'
+ ];
/**
* Turns the (assumed) normalized test record into its string form