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

Side by Side Diff: pkg/polymer_expressions/lib/src/mirrors.dart

Issue 26734004: use symbol literals instead of const ctor in packages (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 2 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 | Annotate | Revision Log
OLDNEW
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
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 }
OLDNEW
« no previous file with comments | « pkg/polymer_expressions/lib/polymer_expressions.dart ('k') | pkg/polymer_expressions/test/eval_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698