From ede572eced27edf38a4672fa131798aab2a247cc Mon Sep 17 00:00:00 2001 From: Mark Miller <erights@gmail.com> Date: Sun, 25 Sep 2011 08:40:10 -0700 Subject: [PATCH] Fixed EarlyError naming. Accepting and ignoring at-bestPractice. Added .hgignore --- .hgignore | 4 ++++ tools/converter/convert.js | 13 +++++++++++-- 2 files changed, 15 insertions(+), 2 deletions(-) create mode 100644 .hgignore diff --git a/.hgignore b/.hgignore new file mode 100644 index 0000000000..5b9693a0bb --- /dev/null +++ b/.hgignore @@ -0,0 +1,4 @@ +\.DS_Store$ +\.d8_history$ +~$ +\.pyc$ diff --git a/tools/converter/convert.js b/tools/converter/convert.js index 5b53e52e14..abee2511fa 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 -- GitLab