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

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

Issue 1212933003: Observatory improvements for exploring compiled code. (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Created 5 years, 6 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
Index: runtime/observatory/lib/src/elements/code_view.html
diff --git a/runtime/observatory/lib/src/elements/code_view.html b/runtime/observatory/lib/src/elements/code_view.html
index ddb3d98cda8add13a976522ca1dd3e4afabf142f..7b1c0571028d108765006a6d5144f9a0441f1cc1 100644
--- a/runtime/observatory/lib/src/elements/code_view.html
+++ b/runtime/observatory/lib/src/elements/code_view.html
@@ -55,6 +55,10 @@
<template if="{{ !(code.isDartCode && code.isOptimized) }}">
<h1>Code for {{ code.name }}</h1>
</template>
+ <object-common object="{{ code }}"></object-common>
+
+ <br><br>
+
<div class="memberList">
<div class="memberItem">
<div class="memberName">Kind</div>
@@ -107,32 +111,34 @@
</template>
</div>
</div>
- <hr>
- <table id="inlineRangeTable" class="table">
- <thead id="inlineRangeTableHead">
- <tr>
- <th class="address" title="Address range">Address Range</th>
- <th class="tick" title="Inclusive">Inclusive</th>
- <th class="tick" title="Exclusive">Exclusive</th>
- <th title="Functions">Functions</th>
- </tr>
- </thead>
- <tbody class="monospace" id="inlineRangeTableBody">
- </tbody>
- </table>
- <hr>
- <table id="disassemblyTable" class="table">
- <thead id="disassemblyTableHead">
- <tr>
- <th class="address" title="Address">Address</th>
- <th class="tick" title="Inclusive">Inclusive</th>
- <th class="tick" title="Exclusive">Exclusive</th>
- <th class="disassembly" title="Disassembly">Disassembly</th>
- </tr>
- </thead>
- <tbody class="monospace" id="disassemblyTableBody">
- </tbody>
- </table>
+ <div class="content-centered-big">
+ <hr>
+ <table id="inlineRangeTable" class="table">
+ <thead id="inlineRangeTableHead">
+ <tr>
+ <th class="address" title="Address range">Address Range</th>
+ <th class="tick" title="Inclusive">Inclusive</th>
+ <th class="tick" title="Exclusive">Exclusive</th>
+ <th title="Functions">Functions</th>
+ </tr>
+ </thead>
+ <tbody class="monospace" id="inlineRangeTableBody">
+ </tbody>
+ </table>
+ <hr>
+ <table id="disassemblyTable" class="table">
+ <thead id="disassemblyTableHead">
+ <tr>
+ <th class="address" title="Address">Address</th>
+ <th class="tick" title="Inclusive">Inclusive</th>
+ <th class="tick" title="Exclusive">Exclusive</th>
+ <th class="disassembly" title="Disassembly">Disassembly</th>
+ </tr>
+ </thead>
+ <tbody class="monospace" id="disassemblyTableBody">
+ </tbody>
+ </table>
+ </div>
<view-footer></view-footer>
</template>
</polymer-element>
« no previous file with comments | « runtime/observatory/lib/src/elements/class_view.html ('k') | runtime/observatory/lib/src/elements/function_ref.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698