| Index: src/handles.h
|
| diff --git a/src/handles.h b/src/handles.h
|
| index fa27be5448105a5a083be613dcb411de5ba321f2..b0295ffa1349b5819d347523be577e2339a7e89d 100644
|
| --- a/src/handles.h
|
| +++ b/src/handles.h
|
| @@ -246,9 +246,6 @@ Handle<Object> GetProperty(Handle<JSReceiver> obj,
|
| Handle<Object> GetProperty(Handle<Object> obj,
|
| Handle<Object> key);
|
|
|
| -Handle<Object> GetElement(Handle<Object> obj,
|
| - uint32_t index);
|
| -
|
| Handle<Object> GetPropertyWithInterceptor(Handle<JSObject> receiver,
|
| Handle<JSObject> holder,
|
| Handle<String> name,
|
| @@ -345,22 +342,6 @@ Handle<ObjectHashTable> PutIntoObjectHashTable(Handle<ObjectHashTable> table,
|
| Handle<JSReceiver> key,
|
| Handle<Object> value);
|
|
|
| -// Does lazy compilation of the given function. Returns true on success and
|
| -// false if the compilation resulted in a stack overflow.
|
| -enum ClearExceptionFlag { KEEP_EXCEPTION, CLEAR_EXCEPTION };
|
| -
|
| -bool EnsureCompiled(Handle<SharedFunctionInfo> shared,
|
| - ClearExceptionFlag flag);
|
| -
|
| -bool CompileLazyShared(Handle<SharedFunctionInfo> shared,
|
| - ClearExceptionFlag flag);
|
| -
|
| -bool CompileLazy(Handle<JSFunction> function, ClearExceptionFlag flag);
|
| -
|
| -bool CompileOptimized(Handle<JSFunction> function,
|
| - int osr_ast_id,
|
| - ClearExceptionFlag flag);
|
| -
|
| class NoHandleAllocation BASE_EMBEDDED {
|
| public:
|
| #ifndef DEBUG
|
|
|