| Index: lib/html/scripts/systembase.py
|
| diff --git a/lib/html/scripts/systembase.py b/lib/html/scripts/systembase.py
|
| index 2b653fb924601f49329dba44b099b25a3cbb260c..956038f413273770b453e84d34b5e099ff3e4ed0 100644
|
| --- a/lib/html/scripts/systembase.py
|
| +++ b/lib/html/scripts/systembase.py
|
| @@ -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
|
|
|
|
|