mirror of
https://github.com/servo/servo
synced 2026-05-09 08:32:31 +02:00
13 lines
357 B
Diff
13 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
|
|
|