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

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

Issue 9317046: Make dart:dom implementation types private so they don't muddle the docs. (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 | « client/dom/generated/src/frog/XSLTProcessor.dart ('k') | client/dom/src/frog_DOMTypeJs.dart » ('j') | 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 c582fa27066de3c4668dd12bae82283fc5c25133..929d17d43c4ed74ab1972b12d6784e0c92732cc8 100755
--- a/client/dom/scripts/dartgenerator.py
+++ b/client/dom/scripts/dartgenerator.py
@@ -1871,7 +1871,7 @@ class FrogInterfaceGenerator(object):
# The implementation is a singleton with no prototype.
extends = ''
else:
- extends = ' extends DOMTypeJs'
+ extends = ' extends _DOMTypeJs'
# TODO: Include all implemented interfaces, including other Lists.
implements = [interface_name]
@@ -1905,7 +1905,7 @@ class FrogInterfaceGenerator(object):
pass
def _ImplClassName(self, type_name):
- return type_name + 'Js'
+ return '_' + type_name + 'Js'
def _NarrowToImplementationType(self, type_name):
# TODO(sra): Move into the 'system' and cache the result.
« no previous file with comments | « client/dom/generated/src/frog/XSLTProcessor.dart ('k') | client/dom/src/frog_DOMTypeJs.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698