Revert "Emit static IDL members."
TBR=blois@google.com,podivilov@chromium.org,sra@google.com Review URL: https://codereview.chromium.org//10973017 git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@12797 260f80e4-7a28-3924-810f-c04153c831b5
This commit is contained in:
@@ -131,7 +131,10 @@ class BaseGenerator(object):
|
||||
for id in sorted(operationsById.keys()):
|
||||
operations = operationsById[id]
|
||||
info = AnalyzeOperation(interface, operations)
|
||||
self.AddOperation(info)
|
||||
if info.IsStatic():
|
||||
self.AddStaticOperation(info)
|
||||
else:
|
||||
self.AddOperation(info)
|
||||
|
||||
def AddSecondaryMembers(self, interface):
|
||||
# With multiple inheritance, attributes and operations of non-first
|
||||
@@ -175,6 +178,9 @@ class BaseGenerator(object):
|
||||
def AddOperation(self, info):
|
||||
pass
|
||||
|
||||
def AddStaticOperation(self, info):
|
||||
pass
|
||||
|
||||
def AddSecondaryAttribute(self, interface, attribute):
|
||||
pass
|
||||
|
||||
|
||||
Reference in New Issue
Block a user