From c6ab60dbfc6da7b4f800c9e40893c8b58413960c Mon Sep 17 00:00:00 2001 From: Jack Moffitt Date: Thu, 28 Aug 2014 09:34:23 -0600 Subject: Cargoify servo --- .../dom/bindings/codegen/parser/external.patch | 49 ++++++++++++++++++++++ 1 file changed, 49 insertions(+) create mode 100644 components/script/dom/bindings/codegen/parser/external.patch (limited to 'components/script/dom/bindings/codegen/parser/external.patch') diff --git a/components/script/dom/bindings/codegen/parser/external.patch b/components/script/dom/bindings/codegen/parser/external.patch new file mode 100644 index 00000000000..9464511a9d0 --- /dev/null +++ b/components/script/dom/bindings/codegen/parser/external.patch @@ -0,0 +1,49 @@ +--- WebIDL.py ++++ WebIDL.py +@@ -450,44 +450,8 @@ class IDLIdentifierPlaceholder(IDLObjectWithIdentifier): + + class IDLExternalInterface(IDLObjectWithIdentifier): + def __init__(self, location, parentScope, identifier): +- assert isinstance(identifier, IDLUnresolvedIdentifier) +- assert isinstance(parentScope, IDLScope) +- self.parent = None +- IDLObjectWithIdentifier.__init__(self, location, parentScope, identifier) +- IDLObjectWithIdentifier.resolve(self, parentScope) +- +- def finish(self, scope): +- pass +- +- def validate(self): +- pass +- +- def isExternal(self): +- return True +- +- def isInterface(self): +- return True +- +- def isConsequential(self): +- return False +- +- def addExtendedAttributes(self, attrs): +- assert len(attrs) == 0 +- +- def resolve(self, parentScope): +- pass +- +- def getJSImplementation(self): +- return None +- +- def isJSImplemented(self): +- return False +- +- def getNavigatorProperty(self): +- return None +- +- def _getDependentObjects(self): +- return set() ++ raise WebIDLError("Servo does not support external interfaces.", ++ [self.location]) + + class IDLPartialInterface(IDLObject): + def __init__(self, location, name, members, nonPartialInterface): -- cgit v1.2.3