blob: 0192f59b21d5aee2c0e57c9ec5bb17a2d707fb06 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
namespace mozilla {
namespace _ipdltest {
nested(upto inside_cpow) sync protocol PTestHighestPrio
{
parent:
nested(inside_cpow) async Msg1();
nested(inside_sync) sync Msg2();
nested(inside_cpow) async Msg3();
nested(inside_cpow) sync Msg4();
child:
async Start();
nested(inside_sync) sync StartInner();
};
}
}
|