Files
servo/third_party/WebIDL/tests/test_empty_sequence_default_value.py
Ngo Iok Ui (Wu Yu Wei) 8eed3b442b Update WebIDL.py (#32495)
* Update WebIDL.py

* Update WebIDL.py

* Add builtin-array.patch

* Fix CodegenRust.py and Configuration.py

* Fix missing downcasts

* mach fmt

* Update check and comment to explain why we need this check

* Update Global of DissimilarOriginWindow.webidl
2024-06-15 04:22:42 +00:00

55 lines
1.2 KiB
Python

import WebIDL
def WebIDLTest(parser, harness):
threw = False
try:
parser.parse(
"""
interface X {
const sequence<long> foo = [];
};
"""
)
results = parser.finish()
except WebIDL.WebIDLError:
threw = True
harness.ok(threw, "Constant cannot have [] as a default value")
parser = parser.reset()
parser.parse(
"""
interface X {
undefined foo(optional sequence<long> arg = []);
};
"""
)
results = parser.finish()
harness.ok(
isinstance(
results[0].members[0].signatures()[0][1][0].defaultValue,
WebIDL.IDLEmptySequenceValue,
),
"Should have IDLEmptySequenceValue as default value of argument",
)
parser = parser.reset()
parser.parse(
"""
dictionary X {
sequence<long> foo = [];
};
"""
)
results = parser.finish()
harness.ok(
isinstance(results[0].members[0].defaultValue, WebIDL.IDLEmptySequenceValue),
"Should have IDLEmptySequenceValue as default value of " "dictionary member",
)