OLD | NEW |
1 <head> | 1 <head> |
2 <link rel="import" href="curly_block.html"> | 2 <link rel="import" href="curly_block.html"> |
3 <link rel="import" href="function_ref.html"> | 3 <link rel="import" href="function_ref.html"> |
4 <link rel="import" href="instance_ref.html"> | 4 <link rel="import" href="instance_ref.html"> |
5 <link rel="import" href="observatory_element.html"> | 5 <link rel="import" href="observatory_element.html"> |
6 <link rel="import" href="script_ref.html"> | 6 <link rel="import" href="script_ref.html"> |
7 </head> | 7 </head> |
8 <polymer-element name="stack-frame" extends="observatory-element"> | 8 <polymer-element name="stack-frame" extends="observatory-element"> |
9 <template> | 9 <template> |
10 <style> | 10 <style> |
(...skipping 10 matching lines...) Expand all Loading... |
21 font: 400 14px 'Montserrat', sans-serif; | 21 font: 400 14px 'Montserrat', sans-serif; |
22 } | 22 } |
23 </style> | 23 </style> |
24 <div class="row"> | 24 <div class="row"> |
25 <div class="col-md-1"></div> | 25 <div class="col-md-1"></div> |
26 <div class="col-md-1"> | 26 <div class="col-md-1"> |
27 #{{ frame['depth'] }} | 27 #{{ frame['depth'] }} |
28 </div> | 28 </div> |
29 <div class="col-md-9"> | 29 <div class="col-md-9"> |
30 <function-ref ref="{{ frame['function'] }}"></function-ref> | 30 <function-ref ref="{{ frame['function'] }}"></function-ref> |
31 ( <script-ref ref="{{ frame['script'] }}" line="{{ frame['line'] }}"> | 31 ( <script-ref ref="{{ frame['script'] }}" |
| 32 pos="{{ frame['tokenPos'] }}"> |
32 </script-ref> ) | 33 </script-ref> ) |
33 | 34 |
34 <curly-block> | 35 <curly-block> |
35 <div class="memberList"> | 36 <div class="memberList"> |
36 <template repeat="{{ v in frame['vars'] }}"> | 37 <template repeat="{{ v in frame['vars'] }}"> |
37 <div class="memberItem"> | 38 <div class="memberItem"> |
38 <div class="memberName">{{ v['name']}}</div> | 39 <div class="memberName">{{ v['name']}}</div> |
39 <div class="memberValue"> | 40 <div class="memberValue"> |
40 <instance-ref ref="{{ v['value'] }}"></instance-ref> | 41 <instance-ref ref="{{ v['value'] }}"></instance-ref> |
41 </div> | 42 </div> |
42 </div> | 43 </div> |
43 </template> | 44 </template> |
44 </div> | 45 </div> |
45 </curly-block> | 46 </curly-block> |
46 | 47 |
47 </div> | 48 </div> |
48 <div class="col-md-1"></div> | 49 <div class="col-md-1"></div> |
49 </div> | 50 </div> |
50 | 51 |
51 | 52 |
52 </template> | 53 </template> |
53 <script type="application/dart" src="stack_frame.dart"></script> | 54 <script type="application/dart" src="stack_frame.dart"></script> |
54 </polymer-element> | 55 </polymer-element> |
OLD | NEW |