Index: src/isolate.cc |
diff --git a/src/isolate.cc b/src/isolate.cc |
index 3dcf6f5dde40936d542517481e6309a589b820c9..615bf085b382d330c22c7029f9cddb1ee2df8781 100644 |
--- a/src/isolate.cc |
+++ b/src/isolate.cc |
@@ -386,7 +386,8 @@ Handle<Object> Isolate::CaptureSimpleStackTrace(Handle<JSReceiver> error_object, |
switch (frame->type()) { |
case StackFrame::JAVA_SCRIPT: |
case StackFrame::OPTIMIZED: |
- case StackFrame::INTERPRETED: { |
+ case StackFrame::INTERPRETED: |
+ case StackFrame::BUILTIN: { |
JavaScriptFrame* js_frame = JavaScriptFrame::cast(frame); |
// Set initial size to the maximum inlining level + 1 for the outermost |
// function. |