| 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 json | 10 import json |
| (...skipping 813 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 824 "@SupportedBrowser(SupportedBrowser.FIREFOX)", | 824 "@SupportedBrowser(SupportedBrowser.FIREFOX)", |
| 825 "@SupportedBrowser(SupportedBrowser.SAFARI)", | 825 "@SupportedBrowser(SupportedBrowser.SAFARI)", |
| 826 ], | 826 ], |
| 827 } | 827 } |
| 828 | 828 |
| 829 def GetComments(interface_name, member_name=None, library_name=None): | 829 def GetComments(interface_name, member_name=None, library_name=None): |
| 830 """ Finds all comments for the interface or member and returns a list. """ | 830 """ Finds all comments for the interface or member and returns a list. """ |
| 831 | 831 |
| 832 # Add documentation from JSON. | 832 # Add documentation from JSON. |
| 833 comments = [] | 833 comments = [] |
| 834 | 834 library_name = 'dart.dom.%s' % library_name |
| 835 if library_name in _dom_json and interface_name in _dom_json[library_name]: | 835 if library_name in _dom_json and interface_name in _dom_json[library_name]: |
| 836 if member_name and (member_name in | 836 if member_name and (member_name in |
| 837 _dom_json[library_name][interface_name]['members']): | 837 _dom_json[library_name][interface_name]['members']): |
| 838 comments = _dom_json[library_name][interface_name]['members'][member_name] | 838 comments = _dom_json[library_name][interface_name]['members'][member_name] |
| 839 elif 'comment' in _dom_json[library_name][interface_name]: | 839 elif 'comment' in _dom_json[library_name][interface_name]: |
| 840 comments = _dom_json[library_name][interface_name]['comment'] | 840 comments = _dom_json[library_name][interface_name]['comment'] |
| 841 | 841 |
| 842 if (len(comments)): | 842 if (len(comments)): |
| 843 comments = ['\n'.join(comments)] | 843 comments = ['\n'.join(comments)] |
| 844 | 844 |
| (...skipping 606 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1451 self) | 1451 self) |
| 1452 | 1452 |
| 1453 if type_data.clazz == 'SVGTearOff': | 1453 if type_data.clazz == 'SVGTearOff': |
| 1454 dart_interface_name = self._renamer.RenameInterface( | 1454 dart_interface_name = self._renamer.RenameInterface( |
| 1455 self._database.GetInterface(type_name)) | 1455 self._database.GetInterface(type_name)) |
| 1456 return SVGTearOffIDLTypeInfo( | 1456 return SVGTearOffIDLTypeInfo( |
| 1457 type_name, type_data, dart_interface_name, self) | 1457 type_name, type_data, dart_interface_name, self) |
| 1458 | 1458 |
| 1459 class_name = '%sIDLTypeInfo' % type_data.clazz | 1459 class_name = '%sIDLTypeInfo' % type_data.clazz |
| 1460 return globals()[class_name](type_name, type_data) | 1460 return globals()[class_name](type_name, type_data) |
| OLD | NEW |