summaryrefslogtreecommitdiffstats
path: root/xpcom
diff options
context:
space:
mode:
authorMoonchild <mcwerewolf@gmail.com>2018-05-01 09:55:55 +0200
committerGitHub <noreply@github.com>2018-05-01 09:55:55 +0200
commitd0c19e4607964c04109e12399e98e86b331edd0f (patch)
tree4fa8d617c40af1a80e82c79b635bb4d725059146 /xpcom
parent0913ffa0cdee200fd30055bbfc1054c639c7866c (diff)
parent83e6cb541070f5ac9b31a1b6d146c0992c44c81e (diff)
downloadUXP-d0c19e4607964c04109e12399e98e86b331edd0f.tar
UXP-d0c19e4607964c04109e12399e98e86b331edd0f.tar.gz
UXP-d0c19e4607964c04109e12399e98e86b331edd0f.tar.lz
UXP-d0c19e4607964c04109e12399e98e86b331edd0f.tar.xz
UXP-d0c19e4607964c04109e12399e98e86b331edd0f.zip
Merge pull request #309 from janekptacijarabaci/build_warnings_4
Build - throws a warning "interface 'nsISelectionPrivate' is scriptable but derives from non-scriptable 'nsISelection'"
Diffstat (limited to 'xpcom')
-rwxr-xr-xxpcom/idl-parser/xpidl/xpidl.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/xpcom/idl-parser/xpidl/xpidl.py b/xpcom/idl-parser/xpidl/xpidl.py
index 8b2d8c884..6bb1ad5de 100755
--- a/xpcom/idl-parser/xpidl/xpidl.py
+++ b/xpcom/idl-parser/xpidl/xpidl.py
@@ -529,7 +529,7 @@ class Interface(object):
raise IDLError("interface '%s' inherits from non-interface type '%s'" % (self.name, self.base), self.location)
if self.attributes.scriptable and not realbase.attributes.scriptable:
- print >>sys.stderr, IDLError("interface '%s' is scriptable but derives from non-scriptable '%s'" % (self.name, self.base), self.location, warning=True)
+ raise IDLError("interface '%s' is scriptable but derives from non-scriptable '%s'" % (self.name, self.base), self.location, warning=True)
if self.attributes.scriptable and realbase.attributes.builtinclass and not self.attributes.builtinclass:
raise IDLError("interface '%s' is not builtinclass but derives from builtinclass '%s'" % (self.name, self.base), self.location)