Remove Type suffix in auto-generated namespaces, thanks @elemoine
This commit is contained in:
+1
-1
@@ -30,7 +30,7 @@ class Type(object):
|
|||||||
return ''.join(lines)
|
return ''.join(lines)
|
||||||
|
|
||||||
def provide(self):
|
def provide(self):
|
||||||
return 'goog.provide(\'%sType\');\n' % (self.name,)
|
return 'goog.provide(\'%s\');\n' % (self.name,)
|
||||||
|
|
||||||
def typedef(self):
|
def typedef(self):
|
||||||
lines = []
|
lines = []
|
||||||
|
|||||||
Reference in New Issue
Block a user