Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(210)

Side by Side Diff: tools/dom/scripts/generator.py

Issue 11886099: Stop generating MutationCallback right way. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « tools/dom/idl/dart/dart.idl ('k') | tools/dom/scripts/systemnative.py » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
11 from htmlrenamer import html_interface_renames 11 from htmlrenamer import html_interface_renames
12 12
13 _pure_interfaces = set([ 13 _pure_interfaces = set([
14 # TODO(sra): DOMStringMap should be a class implementing Map<String,String>. 14 # TODO(sra): DOMStringMap should be a class implementing Map<String,String>.
15 'DOMStringMap', 15 'DOMStringMap',
16 'ElementTimeControl', 16 'ElementTimeControl',
17 'ElementTraversal', 17 'ElementTraversal',
18 'EventListener', 18 'EventListener',
19 'MediaQueryListListener', 19 'MediaQueryListListener',
20 'MutationCallback',
20 'NodeSelector', 21 'NodeSelector',
21 'SVGExternalResourcesRequired', 22 'SVGExternalResourcesRequired',
22 'SVGFilterPrimitiveStandardAttributes', 23 'SVGFilterPrimitiveStandardAttributes',
23 'SVGFitToViewBox', 24 'SVGFitToViewBox',
24 'SVGLangSpace', 25 'SVGLangSpace',
25 'SVGLocatable', 26 'SVGLocatable',
26 'SVGStylable', 27 'SVGStylable',
27 'SVGTests', 28 'SVGTests',
28 'SVGTransformable', 29 'SVGTransformable',
29 'SVGURIReference', 30 'SVGURIReference',
(...skipping 1289 matching lines...) Expand 10 before | Expand all | Expand 10 after
1319 self) 1320 self)
1320 1321
1321 if type_data.clazz == 'SVGTearOff': 1322 if type_data.clazz == 'SVGTearOff':
1322 dart_interface_name = self._renamer.RenameInterface( 1323 dart_interface_name = self._renamer.RenameInterface(
1323 self._database.GetInterface(type_name)) 1324 self._database.GetInterface(type_name))
1324 return SVGTearOffIDLTypeInfo( 1325 return SVGTearOffIDLTypeInfo(
1325 type_name, type_data, dart_interface_name, self) 1326 type_name, type_data, dart_interface_name, self)
1326 1327
1327 class_name = '%sIDLTypeInfo' % type_data.clazz 1328 class_name = '%sIDLTypeInfo' % type_data.clazz
1328 return globals()[class_name](type_name, type_data) 1329 return globals()[class_name](type_name, type_data)
OLDNEW
« no previous file with comments | « tools/dom/idl/dart/dart.idl ('k') | tools/dom/scripts/systemnative.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698