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

Unified Diff: client/dom/scripts/dartgenerator.py

Issue 9187082: Remove dead code. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: client/dom/scripts/dartgenerator.py
diff --git a/client/dom/scripts/dartgenerator.py b/client/dom/scripts/dartgenerator.py
index 76b8dc7651369875a8b2625659854a75fbba1277..c18b765e6134bd2e7fc456c7c592a08ee6cf3968 100755
--- a/client/dom/scripts/dartgenerator.py
+++ b/client/dom/scripts/dartgenerator.py
@@ -695,23 +695,6 @@ class DartGenerator(object):
self._emitters.Flush()
- def FilePathForDartInterface(self, interface_name):
- """Returns the file path of the Dart interface definition."""
- return os.path.join(self._output_dir, 'src', 'interface',
- '%s.dart' % interface_name)
-
-
- def FilePathForDartWrappingImpl(self, interface_name):
- """Returns the file path of the Dart wrapping implementation."""
- return os.path.join(self._output_dir, 'src', 'wrapping',
- '_%sWrappingImplementation.dart' % interface_name)
-
- def FilePathForFrogImpl(self, interface_name):
- """Returns the file path of the Frog implementation."""
- return os.path.join(self._output_dir, 'src', 'frog',
- '%s.dart' % interface_name)
-
-
def _ComputeInheritanceClosure(self):
def Collect(interface, seen, collected):
name = interface.id
@@ -742,51 +725,6 @@ class DartGenerator(object):
return self._inheritance_closure[interface.id]
-
- def _GenerateJavaScriptExternInterfaces(self,
- database,
- namespace,
- window_code,
- prop_code):
- """Generate externs for JavaScript patch code.
- """
-
- props = set()
-
- for interface in database.GetInterfaces():
- self._GatherInterfacePropertyNames(interface, props)
-
- for name in sorted(list(props)):
- prop_code.Emit('$NAMESPACE.prototype.$NAME;\n',
- NAMESPACE=namespace, NAME=name)
-
- for interface in database.GetInterfaces():
- window_code.Emit('Window.prototype.$CLASSREF;\n',
- CLASSREF=interface.id)
-
-
- def _GatherInterfacePropertyNames(self, interface, props):
- """Gather the properties that will be defined on the interface.
- """
-
- # Define getters and setters.
- getters = [attr.id for attr in interface.attributes if attr.is_fc_getter]
- setters = [attr.id for attr in interface.attributes if attr.is_fc_setter]
-
- for name in getters:
- props.add(name + '$getter')
-
- for name in setters:
- props.add(name + '$setter')
-
- # Define members.
- operations = [op.ext_attrs.get('DartName', op.id)
- for op in interface.operations]
- members = sorted(set(operations))
- for name in members:
- props.add(name + '$member')
-
-
class OperationInfo(object):
"""Holder for various derived information from a set of overloaded operations.
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698