Merge pull request #3115 from Ms2ger/CGWrapMethod-doc

Add a documentation comment for CGWrapMethod; r=Manishearth
This commit is contained in:
Ms2ger 2014-08-19 19:42:57 +02:00
commit b40e723a0d

View file

@ -1787,6 +1787,10 @@ JS_SetReservedSlot(obj, DOM_OBJECT_SLOT as u32,
return create
class CGWrapMethod(CGAbstractMethod):
"""
Class that generates the FooBinding::Wrap function for non-callback
interfaces.
"""
def __init__(self, descriptor):
assert not descriptor.interface.isCallback()
if not descriptor.createGlobal: