mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
14 lines
209 B
Python
14 lines
209 B
Python
import WebIDL
|
|
|
|
def WebIDLTest(parser, harness):
|
|
parser.parse("""
|
|
interface A {
|
|
attribute long a;
|
|
};
|
|
|
|
interface B {
|
|
attribute A[] b;
|
|
};
|
|
""");
|
|
parser.finish()
|