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

Unified Diff: src/objects.h

Issue 1227213003: Debugger: ensure that functions with debug info have code with break slots. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 5 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « src/debug.cc ('k') | src/objects-inl.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/objects.h
diff --git a/src/objects.h b/src/objects.h
index 42828c5152deb835dd3e74e96faf702e372a961f..3414007ee28c14238cf7f94e0c9784884552bebd 100644
--- a/src/objects.h
+++ b/src/objects.h
@@ -6857,6 +6857,9 @@ class SharedFunctionInfo: public HeapObject {
reason));
}
+ // Tells whether this function should be subject to debugging.
+ inline bool IsSubjectToDebugging();
+
// Check whether or not this function is inlineable.
bool IsInlineable();
@@ -7249,12 +7252,6 @@ class JSFunction: public JSObject {
// Tells whether this function is builtin.
inline bool IsBuiltin();
- // Tells whether this function is defined in a native script.
- inline bool IsFromNativeScript();
-
- // Tells whether this function is defined in an extension script.
- inline bool IsFromExtensionScript();
-
// Tells whether this function should be subject to debugging.
inline bool IsSubjectToDebugging();
« no previous file with comments | « src/debug.cc ('k') | src/objects-inl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698