Bug 1330699 part 5. Disallow mozmap-typed constants. r=qdot

This commit is contained in:
Boris Zbarsky 2017-02-15 00:00:04 -05:00
Родитель e0ddbaf935
Коммит c2ed802c58
1 изменённых файлов: 3 добавлений и 0 удалений

Просмотреть файл

@ -3884,6 +3884,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