Chromium Code Reviews| 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: |