mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-28 03:17:31 +09:00
18 lines
325 B
Text
18 lines
325 B
Text
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();
|
|
};
|
|
|
|
}
|
|
}
|