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

Side by Side Diff: runtime/observatory/lib/src/elements/instance_ref.html

Issue 1208153002: Include pattern and functions for RegExps over the service protocol. Remove quadratic behavior from… (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Created 5 years, 5 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
OLDNEW
1 <link rel="import" href="../../../../packages/polymer/polymer.html"> 1 <link rel="import" href="../../../../packages/polymer/polymer.html">
2 <link rel="import" href="curly_block.html"> 2 <link rel="import" href="curly_block.html">
3 <link rel="import" href="observatory_element.html"> 3 <link rel="import" href="observatory_element.html">
4 <link rel="import" href="service_ref.html"> 4 <link rel="import" href="service_ref.html">
5 5
6 <polymer-element name="instance-ref" extends="service-ref"> 6 <polymer-element name="instance-ref" extends="service-ref">
7 <template> 7 <template>
8 <link rel="stylesheet" href="css/shared.css"> 8 <link rel="stylesheet" href="css/shared.css">
9 <style> 9 <style>
10 .errorBox { 10 .errorBox {
(...skipping 24 matching lines...) Expand all
35 <template if="{{ ref.isAbstractType }}"> 35 <template if="{{ ref.isAbstractType }}">
36 <a on-click="{{ goto }}" _href="{{ url }}">{{ ref.name }}</a> 36 <a on-click="{{ goto }}" _href="{{ url }}">{{ ref.name }}</a>
37 </template> 37 </template>
38 38
39 <template if="{{ ref.isClosure }}"> 39 <template if="{{ ref.isClosure }}">
40 <a on-click="{{ goto }}" _href="{{ url }}"> 40 <a on-click="{{ goto }}" _href="{{ url }}">
41 {{ ref.function.qualifiedName }} 41 {{ ref.function.qualifiedName }}
42 </a> 42 </a>
43 </template> 43 </template>
44 44
45 <template if="{{ ref.isRegExp }}">
46 <a on-click="{{ goto }}" _href="{{ url }}"><em>{{ ref.clazz.name }}({{ r ef.pattern.valueAsString }})</em></a>
47 </template>
48
45 <template if="{{ ref.isPlainInstance }}"> 49 <template if="{{ ref.isPlainInstance }}">
46 <a on-click="{{ goto }}" _href="{{ url }}"><em>{{ ref.clazz.name }}</em> </a> 50 <a on-click="{{ goto }}" _href="{{ url }}"><em>{{ ref.clazz.name }}</em> </a>
47 <curly-block callback="{{ expander() }}"> 51 <curly-block callback="{{ expander() }}">
48 <div class="memberList"> 52 <div class="memberList">
49 <template repeat="{{ field in ref.fields }}"> 53 <template repeat="{{ field in ref.fields }}">
50 <div class="memberItem"> 54 <div class="memberItem">
51 <div class="memberName"> 55 <div class="memberName">
52 {{ field['decl'].name }} 56 {{ field['decl'].name }}
53 </div> 57 </div>
54 <div class="memberValue"> 58 <div class="memberValue">
(...skipping 85 matching lines...) Expand 10 before | Expand all | Expand 10 after
140 </div> 144 </div>
141 </div> 145 </div>
142 </div> 146 </div>
143 </curly-block> 147 </curly-block>
144 </template> 148 </template>
145 </span> 149 </span>
146 </template> 150 </template>
147 </polymer-element> 151 </polymer-element>
148 152
149 <script type="application/dart" src="instance_ref.dart"></script> 153 <script type="application/dart" src="instance_ref.dart"></script>
OLDNEW
« no previous file with comments | « runtime/observatory/lib/src/elements/code_view.dart ('k') | runtime/observatory/lib/src/elements/instance_view.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698