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

Side by Side Diff: runtime/bin/vmservice/client/lib/src/observatory_elements/disassembly_entry.html

Issue 50243002: Extend Observatory to display libraries, classes, fields, functions and code. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 1 month 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
1 <head>
2 <link rel="import" href="observatory_element.html">
3 </head>
4 <polymer-element name="disassembly-entry" extends="observatory-element">
5 <template>
6 <div class="row">
7 <template if="{{ instruction['type'] == 'DisassembledInstructionComment' }}" >
8 <div class="col-md-2"></div>
9 <div class="col-md-2"></div>
10 <div class="col-md-4"><code>{{ instruction['comment'] }}</code></div>
11 </template>
12 <template if="{{ instruction['type'] == 'DisassembledInstruction' }}">
13 <div class="col-md-2"></div>
14 <div class="col-md-2">{{ instruction['pc'] }}</div>
15 <div class="col-md-4">
16 <code>{{ instruction['hex'] }} {{ instruction['human'] }}</code>
17 </div>
18 </template>
19 </div>
20 </template>
21 <script type="application/dart" src="disassembly_entry.dart"></script>
22 </polymer-element>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698