mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
53 lines
1.1 KiB
Python
53 lines
1.1 KiB
Python
def WebIDLTest(parser, harness):
|
|
threw = False
|
|
try:
|
|
results = parser.parse("""
|
|
interface VariadicConstraints1 {
|
|
void foo(byte... arg1, byte arg2);
|
|
};
|
|
""")
|
|
|
|
except:
|
|
threw = True
|
|
|
|
harness.ok(threw, "Should have thrown.")
|
|
|
|
threw = False
|
|
try:
|
|
results = parser.parse("""
|
|
interface VariadicConstraints2 {
|
|
void foo(byte... arg1, optional byte arg2);
|
|
};
|
|
""")
|
|
|
|
except:
|
|
threw = True
|
|
|
|
harness.ok(threw, "Should have thrown.")
|
|
|
|
threw = False
|
|
try:
|
|
results = parser.parse("""
|
|
interface VariadicConstraints3 {
|
|
void foo(optional byte... arg1);
|
|
};
|
|
""")
|
|
|
|
except:
|
|
threw = True
|
|
|
|
harness.ok(threw, "Should have thrown.")
|
|
|
|
threw = False
|
|
try:
|
|
results = parser.parse("""
|
|
interface VariadicConstraints4 {
|
|
void foo(byte... arg1 = 0);
|
|
};
|
|
""")
|
|
|
|
except:
|
|
threw = True
|
|
|
|
harness.ok(threw, "Should have thrown on variadic argument with default value.")
|