Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(248)

Unified Diff: src/handles.h

Issue 93066: Built-in JSON support (Closed)
Patch Set: Created 11 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: src/handles.h
diff --git a/src/handles.h b/src/handles.h
index 9cc1db44c54b5929f7ae976ffe5bd162b7e1df9c..f91d93b80409066b04d06c60fb3438e3541d402a 100644
--- a/src/handles.h
+++ b/src/handles.h
@@ -301,11 +301,11 @@ bool CompileLazy(Handle<JSFunction> function, ClearExceptionFlag flag);
bool CompileLazyInLoop(Handle<JSFunction> function, ClearExceptionFlag flag);
// These deal with lazily loaded properties.
-void SetupLazy(Handle<JSFunction> fun,
+void SetupLazy(Handle<JSObject> fun,
Mads Ager (chromium) 2009/04/23 19:09:25 fun -> object?
int index,
Handle<Context> compile_context,
Handle<Context> function_context);
-void LoadLazy(Handle<JSFunction> fun, bool* pending_exception);
+void LoadLazy(Handle<JSObject> fun, bool* pending_exception);
Mads Ager (chromium) 2009/04/23 19:09:25 fun -> object?
class NoHandleAllocation BASE_EMBEDDED {
public:

Powered by Google App Engine
This is Rietveld 408576698