Quick fix for r4045
authorpeter.rybin@gmail.com <peter.rybin@gmail.com@ce2b1a6d-e550-0410-aec6-3dcde31c8c00>
Sat, 6 Mar 2010 01:21:34 +0000 (01:21 +0000)
committerpeter.rybin@gmail.com <peter.rybin@gmail.com@ce2b1a6d-e550-0410-aec6-3dcde31c8c00>
Sat, 6 Mar 2010 01:21:34 +0000 (01:21 +0000)
Review URL: http://codereview.chromium.org/668203

git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@4047 ce2b1a6d-e550-0410-aec6-3dcde31c8c00

src/liveedit.cc
test/mjsunit/fuzz-natives.js

index 09970cc..2c27e9f 100644 (file)
@@ -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();
index 687a7d0..730f7b4 100644 (file)
@@ -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 = {