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

Side by Side Diff: sdk/lib/_internal/compiler/implementation/js_backend/namer.dart

Issue 163853004: Revert "Fix null.runtimeType, reflect(null).type.superinterfaces, and reflect(null).getField." (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 10 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
« no previous file with comments | « no previous file | sdk/lib/_internal/compiler/implementation/resolution/members.dart » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2011, 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 part of js_backend; 5 part of js_backend;
6 6
7 /** 7 /**
8 * Assigns JavaScript identifiers to Dart variables, class-names and members. 8 * Assigns JavaScript identifiers to Dart variables, class-names and members.
9 */ 9 */
10 class Namer implements ClosureNamer { 10 class Namer implements ClosureNamer {
(...skipping 721 matching lines...) Expand 10 before | Expand all | Expand 10 after
732 } else if (cls == backend.jsNumberClass) { 732 } else if (cls == backend.jsNumberClass) {
733 return 'num'; 733 return 'num';
734 } else if (cls == backend.jsBoolClass) { 734 } else if (cls == backend.jsBoolClass) {
735 return 'bool'; 735 return 'bool';
736 } else if (cls == backend.jsDoubleClass) { 736 } else if (cls == backend.jsDoubleClass) {
737 return 'double'; 737 return 'double';
738 } else if (cls == backend.jsStringClass) { 738 } else if (cls == backend.jsStringClass) {
739 return 'String'; 739 return 'String';
740 } else if (cls == backend.jsArrayClass) { 740 } else if (cls == backend.jsArrayClass) {
741 return 'List'; 741 return 'List';
742 } else if (cls == backend.jsNullClass) {
743 return 'Null';
744 } else { 742 } else {
745 return null; 743 return null;
746 } 744 }
747 } 745 }
748 746
749 /** 747 /**
750 * Returns a preferred JS-id for the given element. The returned id is 748 * Returns a preferred JS-id for the given element. The returned id is
751 * guaranteed to be a valid JS-id. Globals and static fields are furthermore 749 * guaranteed to be a valid JS-id. Globals and static fields are furthermore
752 * guaranteed to be unique. 750 * guaranteed to be unique.
753 * 751 *
(...skipping 641 matching lines...) Expand 10 before | Expand all | Expand 10 after
1395 if (!first) { 1393 if (!first) {
1396 sb.write('_'); 1394 sb.write('_');
1397 } 1395 }
1398 sb.write('_'); 1396 sb.write('_');
1399 visit(link.head); 1397 visit(link.head);
1400 first = true; 1398 first = true;
1401 } 1399 }
1402 } 1400 }
1403 } 1401 }
1404 } 1402 }
OLDNEW
« no previous file with comments | « no previous file | sdk/lib/_internal/compiler/implementation/resolution/members.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698