OLD | NEW |
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 Loading... |
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 Loading... |
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 } |
OLD | NEW |