Disallow mozmap-typed constants

This commit is contained in:
JustOff 2019-03-13 18:52:13 +02:00 committed by Roy Tam
commit 740f68378f

View file

@ -3843,6 +3843,9 @@ class IDLConst(IDLInterfaceMember):
if type.isDictionary():
raise WebIDLError("A constant cannot be of a dictionary type",
[self.location])
if type.isMozMap():
raise WebIDLError("A constant cannot be of a MozMap type",
[self.location])
self.type = type
self.value = value