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

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

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

Powered by Google App Engine
This is Rietveld 408576698