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

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

Issue 216883008: Use tokenPos instead of line/col in the vm service. (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
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="eval_box.html"> 3 <link rel="import" href="eval_box.html">
4 <link rel="import" href="function_ref.html"> 4 <link rel="import" href="function_ref.html">
5 <link rel="import" href="library_ref.html"> 5 <link rel="import" href="library_ref.html">
6 <link rel="import" href="nav_bar.html"> 6 <link rel="import" href="nav_bar.html">
7 <link rel="import" href="observatory_element.html"> 7 <link rel="import" href="observatory_element.html">
8 <link rel="import" href="script_ref.html"> 8 <link rel="import" href="script_ref.html">
9 </head> 9 </head>
10 <polymer-element name="isolate-view" extends="observatory-element"> 10 <polymer-element name="isolate-view" extends="observatory-element">
(...skipping 92 matching lines...) Expand 10 before | Expand all | Expand 10 after
103 <div class="memberValue"> 103 <div class="memberValue">
104 <instance-ref ref="{{ isolate.error.stacktrace }}"></instance-ref> 104 <instance-ref ref="{{ isolate.error.stacktrace }}"></instance-ref>
105 </div> 105 </div>
106 </template> 106 </template>
107 </div> 107 </div>
108 </div> 108 </div>
109 </div> 109 </div>
110 <hr> 110 <hr>
111 </template> 111 </template>
112 112
113 <br>
114
113 <template if="{{ isolate.topFrame != null }}"> 115 <template if="{{ isolate.topFrame != null }}">
114 <br> 116 <script-inset script="{{ isolate.topFrame['script'] }}"
115 <div class="sourceInset"> 117 pos="{{ isolate.topFrame['tokenPos'] }}">
116 <pre> 118 </script-inset>
117 {{ isolate.topFrame['line'] }} &nbsp; {{ isolate.topFrame['lineString' ] }}</pre>
118 </div>
119 </template> 119 </template>
120 120
121 <br> 121 <br>
122 122
123 <div class="content"> 123 <div class="content">
124 <div class="memberList"> 124 <div class="memberList">
125 <div class="memberItem"> 125 <div class="memberItem">
126 <div class="memberName">root library</div> 126 <div class="memberName">root library</div>
127 <div class="memberValue"> 127 <div class="memberValue">
128 <function-ref ref="{{ isolate.rootLib }}"></function-ref> 128 <function-ref ref="{{ isolate.rootLib }}"></function-ref>
(...skipping 78 matching lines...) Expand 10 before | Expand all | Expand 10 after
207 <hr> 207 <hr>
208 208
209 <div class="content"> 209 <div class="content">
210 <eval-box callback="{{ eval }}"></eval-box> 210 <eval-box callback="{{ eval }}"></eval-box>
211 </div> 211 </div>
212 <br><br><br><br> 212 <br><br><br><br>
213 <br><br><br><br> 213 <br><br><br><br>
214 </template> 214 </template>
215 <script type="application/dart" src="isolate_view.dart"></script> 215 <script type="application/dart" src="isolate_view.dart"></script>
216 </polymer-element> 216 </polymer-element>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698