| OLD | NEW |
| 1 #!/usr/bin/python | 1 #!/usr/bin/python |
| 2 # Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 2 # Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 3 # for details. All rights reserved. Use of this source code is governed by a | 3 # for details. All rights reserved. Use of this source code is governed by a |
| 4 # BSD-style license that can be found in the LICENSE file. | 4 # BSD-style license that can be found in the LICENSE file. |
| 5 | 5 |
| 6 """This module provides shared functionality for systems to generate | 6 """This module provides shared functionality for systems to generate |
| 7 Dart APIs from the IDL database.""" | 7 Dart APIs from the IDL database.""" |
| 8 | 8 |
| 9 import copy | 9 import copy |
| 10 import re | 10 import re |
| (...skipping 724 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 735 } | 735 } |
| 736 | 736 |
| 737 def FindCommonAnnotations(interface_name, member_name=None): | 737 def FindCommonAnnotations(interface_name, member_name=None): |
| 738 """ Finds annotations common between dart2js and dartium. | 738 """ Finds annotations common between dart2js and dartium. |
| 739 """ | 739 """ |
| 740 if member_name: | 740 if member_name: |
| 741 key = '%s.%s' % (interface_name, member_name) | 741 key = '%s.%s' % (interface_name, member_name) |
| 742 else: | 742 else: |
| 743 key = interface_name | 743 key = interface_name |
| 744 | 744 |
| 745 annotations = ["@DomName('" + key + "')"] | 745 annotations = ["@DocsEditable", |
| 746 "@DomName('" + key + "')",] |
| 746 if (dart_annotations.get(key) != None): | 747 if (dart_annotations.get(key) != None): |
| 747 annotations.extend(dart_annotations.get(key)) | 748 annotations.extend(dart_annotations.get(key)) |
| 748 | 749 |
| 749 return annotations | 750 return annotations |
| 750 | 751 |
| 751 def FindDart2JSAnnotations(idl_type, interface_name, member_name): | 752 def FindDart2JSAnnotations(idl_type, interface_name, member_name): |
| 752 """ Finds all annotations for Dart2JS members- including annotations for | 753 """ Finds all annotations for Dart2JS members- including annotations for |
| 753 both dart2js and dartium. | 754 both dart2js and dartium. |
| 754 """ | 755 """ |
| 755 annotations = FindCommonAnnotations(interface_name, member_name) | 756 annotations = FindCommonAnnotations(interface_name, member_name) |
| (...skipping 561 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1317 self) | 1318 self) |
| 1318 | 1319 |
| 1319 if type_data.clazz == 'SVGTearOff': | 1320 if type_data.clazz == 'SVGTearOff': |
| 1320 dart_interface_name = self._renamer.RenameInterface( | 1321 dart_interface_name = self._renamer.RenameInterface( |
| 1321 self._database.GetInterface(type_name)) | 1322 self._database.GetInterface(type_name)) |
| 1322 return SVGTearOffIDLTypeInfo( | 1323 return SVGTearOffIDLTypeInfo( |
| 1323 type_name, type_data, dart_interface_name, self) | 1324 type_name, type_data, dart_interface_name, self) |
| 1324 | 1325 |
| 1325 class_name = '%sIDLTypeInfo' % type_data.clazz | 1326 class_name = '%sIDLTypeInfo' % type_data.clazz |
| 1326 return globals()[class_name](type_name, type_data) | 1327 return globals()[class_name](type_name, type_data) |
| OLD | NEW |