OLD | NEW |
1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file |
2 // for details. All rights reserved. Use of this source code is governed by a | 2 // for details. All rights reserved. Use of this source code is governed by a |
3 // BSD-style license that can be found in the LICENSE file. | 3 // BSD-style license that can be found in the LICENSE file. |
4 | 4 |
5 library service_object_view_element; | 5 library service_object_view_element; |
6 | 6 |
7 import 'dart:html'; | 7 import 'dart:html'; |
8 import 'package:logging/logging.dart'; | 8 import 'package:logging/logging.dart'; |
9 import 'package:observatory/service.dart'; | 9 import 'package:observatory/service.dart'; |
10 import 'package:observatory/tracer.dart'; | 10 import 'package:observatory/tracer.dart'; |
(...skipping 12 matching lines...) Expand all Loading... |
23 var type = object.type; | 23 var type = object.type; |
24 switch (type) { | 24 switch (type) { |
25 case 'Class': | 25 case 'Class': |
26 ClassViewElement element = new Element.tag('class-view'); | 26 ClassViewElement element = new Element.tag('class-view'); |
27 element.cls = object; | 27 element.cls = object; |
28 return element; | 28 return element; |
29 case 'Code': | 29 case 'Code': |
30 CodeViewElement element = new Element.tag('code-view'); | 30 CodeViewElement element = new Element.tag('code-view'); |
31 element.code = object; | 31 element.code = object; |
32 return element; | 32 return element; |
33 case 'Error': | |
34 ErrorViewElement element = new Element.tag('error-view'); | |
35 element.error = object; | |
36 return element; | |
37 case 'Field': | 33 case 'Field': |
38 FieldViewElement element = new Element.tag('field-view'); | 34 FieldViewElement element = new Element.tag('field-view'); |
39 element.field = object; | 35 element.field = object; |
40 return element; | 36 return element; |
41 case 'Function': | 37 case 'Function': |
42 FunctionViewElement element = new Element.tag('function-view'); | 38 FunctionViewElement element = new Element.tag('function-view'); |
43 element.function = object; | 39 element.function = object; |
44 return element; | 40 return element; |
45 case 'HeapMap': | 41 case 'HeapMap': |
46 HeapMapElement element = new Element.tag('heap-map'); | 42 HeapMapElement element = new Element.tag('heap-map'); |
(...skipping 110 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
157 | 153 |
158 dynamic expander() { | 154 dynamic expander() { |
159 return expandEvent; | 155 return expandEvent; |
160 } | 156 } |
161 | 157 |
162 void expandEvent(bool exp, var done) { | 158 void expandEvent(bool exp, var done) { |
163 expand = exp; | 159 expand = exp; |
164 done(); | 160 done(); |
165 } | 161 } |
166 } | 162 } |
OLD | NEW |