| 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 function_ref_element; | 5 library function_ref_element; |
| 6 | 6 |
| 7 import 'package:polymer/polymer.dart'; | 7 import 'package:polymer/polymer.dart'; |
| 8 import 'package:observatory/service.dart'; | 8 import 'package:observatory/service.dart'; |
| 9 import 'service_ref.dart'; | 9 import 'service_ref.dart'; |
| 10 | 10 |
| 11 @CustomTag('function-ref') | 11 @CustomTag('function-ref') |
| 12 class FunctionRefElement extends ServiceRefElement { | 12 class FunctionRefElement extends ServiceRefElement { |
| 13 @published bool qualified = true; | 13 @published bool qualified = true; |
| 14 | 14 |
| 15 void refChanged(oldValue) { | 15 void refChanged(oldValue) { |
| 16 super.refChanged(oldValue); | 16 super.refChanged(oldValue); |
| 17 notifyPropertyChange(#hasParent, 0, 1); | 17 notifyPropertyChange(#hasParent, 0, 1); |
| 18 notifyPropertyChange(#hasClass, 0, 1); | 18 notifyPropertyChange(#hasClass, 0, 1); |
| 19 ServiceMap refMap = ref; | 19 ServiceMap refMap = ref; |
| 20 hasParent = (refMap != null && refMap['parent'] != null); | 20 hasParent = (refMap != null && refMap['parent'] != null); |
| 21 hasClass = (refMap != null && | 21 hasClass = (refMap != null && |
| 22 refMap['class'] != null && | 22 refMap['owner'] != null && |
| 23 refMap['class']['name'] != null && | 23 refMap['owner'].serviceType == 'Class'); |
| 24 refMap['class']['name'] != '::'); | |
| 25 } | 24 } |
| 26 | 25 |
| 27 @observable bool hasParent = false; | 26 @observable bool hasParent = false; |
| 28 @observable bool hasClass = false; | 27 @observable bool hasClass = false; |
| 29 | 28 |
| 30 FunctionRefElement.created() : super.created(); | 29 FunctionRefElement.created() : super.created(); |
| 31 } | 30 } |
| OLD | NEW |