gecko/dom/bindings/parser/tests/test_array_of_interface.py
2012-04-12 15:14:10 -07:00

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()