| OLD | NEW |
| (Empty) |
| 1 <head> | |
| 2 <link rel="import" href="curly_block.html"> | |
| 3 <link rel="import" href="function_ref.html"> | |
| 4 <link rel="import" href="instance_ref.html"> | |
| 5 <link rel="import" href="observatory_element.html"> | |
| 6 <link rel="import" href="script_ref.html"> | |
| 7 </head> | |
| 8 <polymer-element name="stack-frame" extends="observatory-element"> | |
| 9 <template> | |
| 10 <style> | |
| 11 .member { | |
| 12 vertical-align: top; | |
| 13 padding: 0 0 0 1em; | |
| 14 } | |
| 15 </style> | |
| 16 <div class="row"> | |
| 17 <div class="col-md-1"></div> | |
| 18 <div class="col-md-1"> | |
| 19 #{{ frame['depth'] }} | |
| 20 </div> | |
| 21 <div class="col-md-9"> | |
| 22 <function-ref app="{{ app }}" ref="{{ frame['function'] }}"></function-r
ef> | |
| 23 ( <script-ref app="{{ app }}" ref="{{ frame['script'] }}" line="{{ frame
['line'] }}"> | |
| 24 </script-ref> ) | |
| 25 <curly-block> | |
| 26 <table> | |
| 27 <tr template repeat="{{ v in frame['vars'] }}"> | |
| 28 <td class="member">{{ v['name']}}</td> | |
| 29 <td class="member"> | |
| 30 <instance-ref app="{{ app }}" ref="{{ v['value'] }}"></instance-
ref> | |
| 31 </td> | |
| 32 </tr> | |
| 33 </table> | |
| 34 </curly-block> | |
| 35 | |
| 36 </div> | |
| 37 <div class="col-md-1"></div> | |
| 38 </div> | |
| 39 | |
| 40 | |
| 41 </template> | |
| 42 <script type="application/dart" src="stack_frame.dart"></script> | |
| 43 </polymer-element> | |
| OLD | NEW |