| 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 13 matching lines...) Expand all Loading... |
| 24 'ElementTraversal', | 24 'ElementTraversal', |
| 25 'EventListener', | 25 'EventListener', |
| 26 'MediaQueryListListener', | 26 'MediaQueryListListener', |
| 27 'MutationCallback', | 27 'MutationCallback', |
| 28 'NodeSelector', | 28 'NodeSelector', |
| 29 'SVGExternalResourcesRequired', | 29 'SVGExternalResourcesRequired', |
| 30 'SVGFilterPrimitiveStandardAttributes', | 30 'SVGFilterPrimitiveStandardAttributes', |
| 31 'SVGFitToViewBox', | 31 'SVGFitToViewBox', |
| 32 'SVGLangSpace', | 32 'SVGLangSpace', |
| 33 'SVGLocatable', | 33 'SVGLocatable', |
| 34 'SVGStylable', | |
| 35 'SVGTests', | 34 'SVGTests', |
| 36 'SVGTransformable', | 35 'SVGTransformable', |
| 37 'SVGURIReference', | 36 'SVGURIReference', |
| 38 'SVGZoomAndPan', | 37 'SVGZoomAndPan', |
| 39 'TimeoutHandler']) | 38 'TimeoutHandler']) |
| 40 | 39 |
| 41 def IsPureInterface(interface_name): | 40 def IsPureInterface(interface_name): |
| 42 return interface_name in _pure_interfaces | 41 return interface_name in _pure_interfaces |
| 43 | 42 |
| 44 | 43 |
| (...skipping 1406 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1451 self) | 1450 self) |
| 1452 | 1451 |
| 1453 if type_data.clazz == 'SVGTearOff': | 1452 if type_data.clazz == 'SVGTearOff': |
| 1454 dart_interface_name = self._renamer.RenameInterface( | 1453 dart_interface_name = self._renamer.RenameInterface( |
| 1455 self._database.GetInterface(type_name)) | 1454 self._database.GetInterface(type_name)) |
| 1456 return SVGTearOffIDLTypeInfo( | 1455 return SVGTearOffIDLTypeInfo( |
| 1457 type_name, type_data, dart_interface_name, self) | 1456 type_name, type_data, dart_interface_name, self) |
| 1458 | 1457 |
| 1459 class_name = '%sIDLTypeInfo' % type_data.clazz | 1458 class_name = '%sIDLTypeInfo' % type_data.clazz |
| 1460 return globals()[class_name](type_name, type_data) | 1459 return globals()[class_name](type_name, type_data) |
| OLD | NEW |