| 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.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 |
| 11 * [name]. | 11 * [name]. |
| 12 * | 12 * |
| 13 * Note that it's not possible to tell if there's an implementation via | 13 * Note that it's not possible to tell if there's an implementation via |
| 14 * noSuchMethod(). | 14 * noSuchMethod(). |
| 15 */ | 15 */ |
| (...skipping 17 matching lines...) Expand all Loading... |
| 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 != const Symbol('dart.core.Object')); |
| 42 } | 42 } |
| OLD | NEW |