Revision: 4047
Author: [email protected]
Date: Fri Mar 5 17:21:34 2010
Log: Quick fix for r4045
Review URL: http://codereview.chromium.org/668203
http://code.google.com/p/v8/source/detail?r=4047
Modified:
/branches/bleeding_edge/src/liveedit.cc
/branches/bleeding_edge/test/mjsunit/fuzz-natives.js
=======================================
--- /branches/bleeding_edge/src/liveedit.cc Fri Mar 5 14:08:58 2010
+++ /branches/bleeding_edge/src/liveedit.cc Fri Mar 5 17:21:34 2010
@@ -44,7 +44,7 @@
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 @@
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();
=======================================
--- /branches/bleeding_edge/test/mjsunit/fuzz-natives.js Mon Mar 1
07:33:30 2010
+++ /branches/bleeding_edge/test/mjsunit/fuzz-natives.js Fri Mar 5
17:21:34 2010
@@ -150,7 +150,15 @@
"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 = {
--
v8-dev mailing list
[email protected]
http://groups.google.com/group/v8-dev