зеркало из https://github.com/mozilla/gecko-dev.git
19 строки
389 B
Python
19 строки
389 B
Python
|
import WebIDL
|
||
|
|
||
|
def WebIDLTest(parser, harness):
|
||
|
parser.parse("""
|
||
|
interface TestIncompleteParent : NotYetDefined {
|
||
|
void foo();
|
||
|
};
|
||
|
|
||
|
interface NotYetDefined : EvenHigherOnTheChain {
|
||
|
};
|
||
|
|
||
|
interface EvenHigherOnTheChain {
|
||
|
};
|
||
|
""")
|
||
|
|
||
|
parser.finish()
|
||
|
|
||
|
harness.ok(True, "TestIncompleteParent interface parsed without error.")
|