Enable JS1.7 features in JSSh. Not part of default builds.

This commit is contained in:
alex%croczilla.com 2006-09-11 10:01:37 +00:00
Родитель 0fa608ce5e
Коммит be88ea92d3
1 изменённых файлов: 3 добавлений и 0 удалений

Просмотреть файл

@ -583,6 +583,9 @@ NS_IMETHODIMP nsJSSh::Init()
// Enable e4x:
JS_SetOptions(mJSContext, JS_GetOptions(mJSContext) | JSOPTION_XML);
// Enable js1.7 features (let, yield, etc - see bug#351515)
JS_SetVersion(mJSContext, JSVERSION_1_7);
mContextStack = do_GetService("@mozilla.org/js/xpc/ContextStack;1");
if (!mContextStack) {
NS_ERROR("failed to get the nsThreadJSContextStack service");