Chromium Code Reviews| Index: src/frames.h |
| diff --git a/src/frames.h b/src/frames.h |
| index 864308c7dd30c51b862aa40021bf4bf0cd8c4c3c..a912ff7bd78dd6d7b952ac6ebcee27dcd8bb259c 100644 |
| --- a/src/frames.h |
| +++ b/src/frames.h |
| @@ -248,7 +248,8 @@ class StackFrame BASE_EMBEDDED { |
| bool is_java_script() const { |
| Type type = this->type(); |
| - return (type == JAVA_SCRIPT) || (type == OPTIMIZED); |
| + return (type == JAVA_SCRIPT) || (type == OPTIMIZED) || |
| + (type == INTERPRETED); |
| } |
| // Accessors. |