aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/script/dom/bindings/codegen/parser/external.patch
diff options
context:
space:
mode:
authorJack Moffitt <jack@metajack.im>2014-08-28 09:34:23 -0600
committerJack Moffitt <jack@metajack.im>2014-09-08 20:21:42 -0600
commitc6ab60dbfc6da7b4f800c9e40893c8b58413960c (patch)
treed1d74076cf7fa20e4f77ec7cb82cae98b67362cb /src/components/script/dom/bindings/codegen/parser/external.patch
parentdb2f642c32fc5bed445bb6f2e45b0f6f0b4342cf (diff)
downloadservo-c6ab60dbfc6da7b4f800c9e40893c8b58413960c.tar.gz
servo-c6ab60dbfc6da7b4f800c9e40893c8b58413960c.zip
Cargoify servo
Diffstat (limited to 'src/components/script/dom/bindings/codegen/parser/external.patch')
-rw-r--r--src/components/script/dom/bindings/codegen/parser/external.patch49
1 files changed, 0 insertions, 49 deletions
diff --git a/src/components/script/dom/bindings/codegen/parser/external.patch b/src/components/script/dom/bindings/codegen/parser/external.patch
deleted file mode 100644
index 9464511a9d0..00000000000
--- a/src/components/script/dom/bindings/codegen/parser/external.patch
+++ /dev/null
@@ -1,49 +0,0 @@
---- 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):