Commit a934eb15 authored by peter.rybin@gmail.com's avatar peter.rybin@gmail.com

Quick fix for r4045

Review URL: http://codereview.chromium.org/668203

git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@4047 ce2b1a6d-e550-0410-aec6-3dcde31c8c00
parent 00a44ae5
......@@ -44,7 +44,7 @@ namespace internal {
static void CompileScriptForTracker(Handle<Script> script) {
const bool is_eval = false;
const bool is_global = true;
// TODO: support extensions.
// TODO(635): support extensions.
Extension* extension = NULL;
PostponeInterruptsScope postpone;
......@@ -385,7 +385,7 @@ static int TranslatePosition(int original_position,
Handle<JSArray> position_change_array) {
int position_diff = 0;
int array_len = Smi::cast(position_change_array->length())->value();
// TODO: binary search may be used here
// TODO(635): binary search may be used here
for (int i = 0; i < array_len; i += 3) {
int chunk_start =
Smi::cast(position_change_array->GetElement(i))->value();
......
......@@ -150,7 +150,15 @@ var knownProblems = {
"DeleteHandleScopeExtensions": true,
// That can only be invoked on Array.prototype.
"FinishArrayPrototypeSetup": true
"FinishArrayPrototypeSetup": true,
// LiveEdit feature is under development currently and has fragile input.
"LiveEditFindSharedFunctionInfosForScript": true,
"LiveEditGatherCompileInfo": true,
"LiveEditReplaceScript": true,
"LiveEditReplaceFunctionCode": true,
"LiveEditRelinkFunctionToScript": true,
"LiveEditPatchFunctionPositions": true
};
var currentlyUncallable = {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment