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

Side by Side Diff: src/isolate.h

Issue 2142933003: Move Error methods to C++ (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Handle exception in GetProperty Created 4 years, 5 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 unified diff | Download patch
« no previous file with comments | « src/heap-symbols.h ('k') | src/isolate.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2012 the V8 project authors. All rights reserved. 1 // Copyright 2012 the V8 project authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef V8_ISOLATE_H_ 5 #ifndef V8_ISOLATE_H_
6 #define V8_ISOLATE_H_ 6 #define V8_ISOLATE_H_
7 7
8 #include <memory> 8 #include <memory>
9 #include <queue> 9 #include <queue>
10 #include <set> 10 #include <set>
(...skipping 682 matching lines...) Expand 10 before | Expand all | Expand 10 after
693 NO_INLINE(void PushStackTraceAndDie(unsigned int magic, void* ptr1, 693 NO_INLINE(void PushStackTraceAndDie(unsigned int magic, void* ptr1,
694 void* ptr2, unsigned int magic2)); 694 void* ptr2, unsigned int magic2));
695 Handle<JSArray> CaptureCurrentStackTrace( 695 Handle<JSArray> CaptureCurrentStackTrace(
696 int frame_limit, 696 int frame_limit,
697 StackTrace::StackTraceOptions options); 697 StackTrace::StackTraceOptions options);
698 Handle<Object> CaptureSimpleStackTrace(Handle<JSReceiver> error_object, 698 Handle<Object> CaptureSimpleStackTrace(Handle<JSReceiver> error_object,
699 Handle<Object> caller); 699 Handle<Object> caller);
700 MaybeHandle<JSReceiver> CaptureAndSetDetailedStackTrace( 700 MaybeHandle<JSReceiver> CaptureAndSetDetailedStackTrace(
701 Handle<JSReceiver> error_object); 701 Handle<JSReceiver> error_object);
702 MaybeHandle<JSReceiver> CaptureAndSetSimpleStackTrace( 702 MaybeHandle<JSReceiver> CaptureAndSetSimpleStackTrace(
703 Handle<JSReceiver> error_object, Handle<Object> caller); 703 Handle<JSReceiver> error_object,
704 Handle<Object> caller = Handle<Object>());
704 Handle<JSArray> GetDetailedStackTrace(Handle<JSObject> error_object); 705 Handle<JSArray> GetDetailedStackTrace(Handle<JSObject> error_object);
705 706
706 // Returns if the given context may access the given global object. If 707 // Returns if the given context may access the given global object. If
707 // the result is false, the pending exception is guaranteed to be 708 // the result is false, the pending exception is guaranteed to be
708 // set. 709 // set.
709 bool MayAccess(Handle<Context> accessing_context, Handle<JSObject> receiver); 710 bool MayAccess(Handle<Context> accessing_context, Handle<JSObject> receiver);
710 711
711 void SetFailedAccessCheckCallback(v8::FailedAccessCheckCallback callback); 712 void SetFailedAccessCheckCallback(v8::FailedAccessCheckCallback callback);
712 void ReportFailedAccessCheck(Handle<JSObject> receiver); 713 void ReportFailedAccessCheck(Handle<JSObject> receiver);
713 714
(...skipping 928 matching lines...) Expand 10 before | Expand all | Expand 10 after
1642 1643
1643 EmbeddedVector<char, 128> filename_; 1644 EmbeddedVector<char, 128> filename_;
1644 FILE* file_; 1645 FILE* file_;
1645 int scope_depth_; 1646 int scope_depth_;
1646 }; 1647 };
1647 1648
1648 } // namespace internal 1649 } // namespace internal
1649 } // namespace v8 1650 } // namespace v8
1650 1651
1651 #endif // V8_ISOLATE_H_ 1652 #endif // V8_ISOLATE_H_
OLDNEW
« no previous file with comments | « src/heap-symbols.h ('k') | src/isolate.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698