зеркало из https://github.com/mozilla/gecko-dev.git
Bug 1330699 part 5. Disallow mozmap-typed constants. r=qdot
This commit is contained in:
Родитель
e0ddbaf935
Коммит
c2ed802c58
|
@ -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
|
||||
|
||||
|
|
Загрузка…
Ссылка в новой задаче