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

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

Issue 161333002: 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: Update status file for Safari. 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';
742 } else { 744 } else {
743 return null; 745 return null;
744 } 746 }
745 } 747 }
746 748
747 /** 749 /**
748 * Returns a preferred JS-id for the given element. The returned id is 750 * Returns a preferred JS-id for the given element. The returned id is
749 * guaranteed to be a valid JS-id. Globals and static fields are furthermore 751 * guaranteed to be a valid JS-id. Globals and static fields are furthermore
750 * guaranteed to be unique. 752 * guaranteed to be unique.
751 * 753 *
(...skipping 641 matching lines...) Expand 10 before | Expand all | Expand 10 after
1393 if (!first) { 1395 if (!first) {
1394 sb.write('_'); 1396 sb.write('_');
1395 } 1397 }
1396 sb.write('_'); 1398 sb.write('_');
1397 visit(link.head); 1399 visit(link.head);
1398 first = true; 1400 first = true;
1399 } 1401 }
1400 } 1402 }
1401 } 1403 }
1402 } 1404 }
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