servo/components/script/dom/bindings/codegen/parser/module.patch
2014-09-08 20:21:42 -06:00

12 lines
357 B
Diff

--- WebIDL.py
+++ WebIDL.py
@@ -3398,6 +3398,9 @@ class IDLCallbackType(IDLType, IDLObjectWithScope):
self._treatNonCallableAsNull = False
self._treatNonObjectAsNull = False
+ def module(self):
+ return self.location.filename().split('/')[-1].split('.webidl')[0] + 'Binding'
+
def isCallback(self):
return True