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 782 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
793 'SpeechRecognitionError': _speech_recognition_annotations, | 793 'SpeechRecognitionError': _speech_recognition_annotations, |
794 'SpeechRecognitionEvent': _speech_recognition_annotations, | 794 'SpeechRecognitionEvent': _speech_recognition_annotations, |
795 'SpeechRecognitionResult': _speech_recognition_annotations, | 795 'SpeechRecognitionResult': _speech_recognition_annotations, |
796 'WebSocket': _all_but_ie9_annotations, | 796 'WebSocket': _all_but_ie9_annotations, |
797 'WorkerContext.indexedDB': _indexed_db_annotations, | 797 'WorkerContext.indexedDB': _indexed_db_annotations, |
798 'WorkerContext.webkitRequestFileSystem': _file_system_annotations, | 798 'WorkerContext.webkitRequestFileSystem': _file_system_annotations, |
799 'WorkerContext.webkitRequestFileSystemSync': _file_system_annotations, | 799 'WorkerContext.webkitRequestFileSystemSync': _file_system_annotations, |
800 'WorkerContext.webkitResolveLocalFileSystemSyncURL': _file_system_annotations, | 800 'WorkerContext.webkitResolveLocalFileSystemSyncURL': _file_system_annotations, |
801 'WorkerContext.webkitResolveLocalFileSystemURL': _file_system_annotations, | 801 'WorkerContext.webkitResolveLocalFileSystemURL': _file_system_annotations, |
802 'XMLHttpRequestProgressEvent': _webkit_experimental_annotations, | 802 'XMLHttpRequestProgressEvent': _webkit_experimental_annotations, |
| 803 'XSLTProcessor': [ |
| 804 "@SupportedBrowser(SupportedBrowser.CHROME)", |
| 805 "@SupportedBrowser(SupportedBrowser.FIREFOX)", |
| 806 "@SupportedBrowser(SupportedBrowser.SAFARI)", |
| 807 ], |
803 } | 808 } |
804 | 809 |
805 def GetComments(interface_name, member_name=None, library_name=None): | 810 def GetComments(interface_name, member_name=None, library_name=None): |
806 """ Finds all comments for the interface or member and returns a list. """ | 811 """ Finds all comments for the interface or member and returns a list. """ |
807 | 812 |
808 # Add documentation from JSON. | 813 # Add documentation from JSON. |
809 comments = [] | 814 comments = [] |
810 | 815 |
811 if library_name in _dom_json and interface_name in _dom_json[library_name]: | 816 if library_name in _dom_json and interface_name in _dom_json[library_name]: |
812 if member_name and (member_name in | 817 if member_name and (member_name in |
(...skipping 608 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1421 self) | 1426 self) |
1422 | 1427 |
1423 if type_data.clazz == 'SVGTearOff': | 1428 if type_data.clazz == 'SVGTearOff': |
1424 dart_interface_name = self._renamer.RenameInterface( | 1429 dart_interface_name = self._renamer.RenameInterface( |
1425 self._database.GetInterface(type_name)) | 1430 self._database.GetInterface(type_name)) |
1426 return SVGTearOffIDLTypeInfo( | 1431 return SVGTearOffIDLTypeInfo( |
1427 type_name, type_data, dart_interface_name, self) | 1432 type_name, type_data, dart_interface_name, self) |
1428 | 1433 |
1429 class_name = '%sIDLTypeInfo' % type_data.clazz | 1434 class_name = '%sIDLTypeInfo' % type_data.clazz |
1430 return globals()[class_name](type_name, type_data) | 1435 return globals()[class_name](type_name, type_data) |
OLD | NEW |