Bug 650526 - Follow up to Bug 648102, changes to JS_BufferIsCompilableUnit. r=gal

This commit is contained in:
Wes Garland 2011-04-16 15:13:10 -04:00
Родитель c107fc65f3
Коммит 66228935e8
2 изменённых файлов: 2 добавлений и 2 удалений

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

@ -670,7 +670,7 @@ ProcessFile(JSContext *cx,
}
bufp += strlen(bufp);
lineno++;
} while (!JS_BufferIsCompilableUnit(cx, obj, buffer, strlen(buffer)));
} while (!JS_BufferIsCompilableUnit(cx, JS_FALSE, obj, buffer, strlen(buffer)));
/* Clear any pending exception from previous failed compiles. */
JS_ClearPendingException(cx);

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

@ -1094,7 +1094,7 @@ ProcessFile(JSContext *cx, JSObject *obj, const char *filename, FILE *file,
}
bufp += strlen(bufp);
lineno++;
} while (!JS_BufferIsCompilableUnit(cx, obj, buffer, strlen(buffer)));
} while (!JS_BufferIsCompilableUnit(cx, JS_FALSE, obj, buffer, strlen(buffer)));
DoBeginRequest(cx);
/* Clear any pending exception from previous failed compiles. */