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

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

Issue 197803004: Add dead CodeRegionTable for tracking overwritten Dart code (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 9 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
(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 <style>
7 .monospace {
8 font-family: consolas, courier, monospace;
9 font-size: 1em;
10 line-height: 1.2em;
11 white-space: nowrap;
12 }
13 </style>
14 <div class="row">
15 <div class="col-md-2 monospace">{{ instruction.formattedInclusive(code) }} </div>
16 <div class="col-md-2 monospace">{{ instruction.formattedExclusive(code) }} </div>
17 <div class="col-md-2 monospace">{{ instruction.formattedAddress() }}</div>
18 <div class="col-md-6 monospace">{{ instruction.human }}</div>
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