Skip to content
Snippets Groups Projects
Commit ede572ec authored by Mark Miller's avatar Mark Miller
Browse files

Fixed EarlyError naming. Accepting and ignoring at-bestPractice.

Added .hgignore
parent aa67d8e5
No related branches found
No related tags found
No related merge requests found
\.DS_Store$
\.d8_history$
~$
\.pyc$
...@@ -56,7 +56,7 @@ ...@@ -56,7 +56,7 @@
*/ */
global.GlobalScopeTests = global.GlobalScopeTests || {}; global.GlobalScopeTests = global.GlobalScopeTests || {};
global.EarlyErrorRePat = 'EarlyErrorRePat'; global.EarlyErrorRePat = 'EarlyErrorRePat';
global.NotEarlyErrorString = 'NotEarlyErrorString'; global.NotEarlyErrorString = 'NotEarlyError';
///////////////////////////////////////////////////////////////// /////////////////////////////////////////////////////////////////
...@@ -372,7 +372,16 @@ ...@@ -372,7 +372,16 @@
// If we see any properties other than these after normalization, // If we see any properties other than these after normalization,
// we signal an error. // we signal an error.
var KNOWN_PROPS = ['path', 'description', 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 * Turns the (assumed) normalized test record into its string form
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment