10 lines
238 B
Python
10 lines
238 B
Python
def WebIDLTest(parser, harness):
|
|
parser.parse(
|
|
"""
|
|
callback TestVariadicCallback = any(any... arguments);
|
|
"""
|
|
)
|
|
|
|
parser.finish()
|
|
|
|
harness.ok(True, "TestVariadicCallback callback parsed without error.")
|