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

Unified Diff: runtime/observatory/lib/src/elements/isolate_summary.html

Issue 1709383002: Improve behaviour when we hit a stack overflow / OOM error (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Created 4 years, 10 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 | « runtime/observatory/lib/src/elements/debugger.dart ('k') | runtime/observatory/lib/src/service/object.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/observatory/lib/src/elements/isolate_summary.html
diff --git a/runtime/observatory/lib/src/elements/isolate_summary.html b/runtime/observatory/lib/src/elements/isolate_summary.html
index c146bfac194d2c7617960db3d1b624f6d8d73753..d71aa76c0081b7dff302f385a9f9815659a0fe10 100644
--- a/runtime/observatory/lib/src/elements/isolate_summary.html
+++ b/runtime/observatory/lib/src/elements/isolate_summary.html
@@ -64,11 +64,13 @@
<template if="{{ isolate.pauseEvent.kind == 'PauseException' }}">
by exception
</template>
- at
- <function-ref ref="{{ isolate.topFrame.function }}">
- </function-ref>
- (<source-link location="{{ isolate.topFrame.location }}">
- </source-link>)
+ <template if="{{ isolate.topFrame != null }}">
+ at
+ <function-ref ref="{{ isolate.topFrame.function }}">
+ </function-ref>
+ (<source-link location="{{ isolate.topFrame.location }}">
+ </source-link>)
+ </template>
</template>
</template>
« no previous file with comments | « runtime/observatory/lib/src/elements/debugger.dart ('k') | runtime/observatory/lib/src/service/object.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698