我有以下要编译的 .avdl 文件:
@namespace("com.test.foo.bar")
protocol PairStore {
/* This is already defined in another namespace - "com.test.foo.nan" */
record Pair {
string item1;
string item2;
}
record Registration {
Pair inputPair;
Pair outputPair;
string indexURI;
}
}
所以问题是我如何引用在创建时和in 中Pair
定义的内容?com.test.foo.nan
PairStore
Registration
com.test.foo.bar