Sign in
third-party-mirror
/
servo
/
refs/heads/main
/
.
/
third_party
/
WebIDL
/
tests
/
test_nullable_void.py
blob: f2a0177ced574a4fa211627e29b62b2b555425bf [
file
] [
log
] [
blame
] [
edit
]
import
WebIDL
def
WebIDLTest
(
parser
,
harness
):
threw
=
False
try
:
parser
.
parse
(
"""
interface NullableVoid {
void? foo();
};
"""
)
parser
.
finish
()
except
WebIDL
.
WebIDLError
:
threw
=
True
harness
.
ok
(
threw
,
"Should have thrown."
)