| 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 polymer_expressions.src.mirrors; | 5 library polymer_expressions.src.mirrors; |
| 6 | 6 |
| 7 import 'dart:mirrors'; | 7 import 'dart:mirrors'; |
| 8 | 8 |
| 9 /** | 9 /** |
| 10 * Walks up the class hierarchy to find a method declaration with the given | 10 * Walks up the class hierarchy to find a method declaration with the given |
| (...skipping 20 matching lines...) Expand all Loading... |
| 31 } | 31 } |
| 32 return null; | 32 return null; |
| 33 } | 33 } |
| 34 | 34 |
| 35 /** | 35 /** |
| 36 * Work-around for http://dartbug.com/5794 | 36 * Work-around for http://dartbug.com/5794 |
| 37 */ | 37 */ |
| 38 bool hasSuperclass(ClassMirror classMirror) { | 38 bool hasSuperclass(ClassMirror classMirror) { |
| 39 var superclass = classMirror.superclass; | 39 var superclass = classMirror.superclass; |
| 40 return (superclass != null) && | 40 return (superclass != null) && |
| 41 (superclass.qualifiedName != const Symbol('dart.core.Object')); | 41 (superclass.qualifiedName != #dart.core.Object); |
| 42 } | 42 } |
| OLD | NEW |