| Index: runtime/bin/vmservice/client/lib/src/elements/disassembly_entry.html
|
| diff --git a/runtime/bin/vmservice/client/lib/src/elements/disassembly_entry.html b/runtime/bin/vmservice/client/lib/src/elements/disassembly_entry.html
|
| index 79b7516116af29cd89622d8c9151f0747383f1f9..5f2b4834afafc17fcba9fe8a1860f0a217014d1d 100644
|
| --- a/runtime/bin/vmservice/client/lib/src/elements/disassembly_entry.html
|
| +++ b/runtime/bin/vmservice/client/lib/src/elements/disassembly_entry.html
|
| @@ -3,12 +3,19 @@
|
| </head>
|
| <polymer-element name="disassembly-entry" extends="observatory-element">
|
| <template>
|
| + <style>
|
| + .monospace {
|
| + font-family: consolas, courier, monospace;
|
| + font-size: 1em;
|
| + line-height: 1.2em;
|
| + white-space: nowrap;
|
| + }
|
| + </style>
|
| <div class="row">
|
| - <div class="col-md-2">{{ instruction.formattedTicks() }}</div>
|
| - <div class="col-md-2">{{ instruction.formattedAddress() }}</div>
|
| - <div class="col-md-4">
|
| - <code>{{ instruction.machine }} {{ instruction.human }}</code>
|
| - </div>
|
| + <div class="col-md-2 monospace">{{ instruction.formattedAddress() }}</div>
|
| + <div class="col-md-2 monospace">{{ instruction.formattedInclusive(code) }}</div>
|
| + <div class="col-md-2 monospace">{{ instruction.formattedExclusive(code) }}</div>
|
| + <div class="col-md-6 monospace">{{ instruction.human }}</div>
|
| </div>
|
| </template>
|
| <script type="application/dart" src="disassembly_entry.dart"></script>
|
|
|