mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-24 09:27:31 +09:00
18 lines
310 B
Text
18 lines
310 B
Text
include protocol PTestFailedCtor;
|
|
include protocol PTestFailedCtorSubsub;
|
|
|
|
namespace mozilla {
|
|
namespace _ipdltest {
|
|
|
|
intr protocol PTestFailedCtorSub {
|
|
manager PTestFailedCtor;
|
|
manages PTestFailedCtorSubsub;
|
|
|
|
parent:
|
|
async PTestFailedCtorSubsub();
|
|
sync Sync();
|
|
async __delete__();
|
|
};
|
|
|
|
}
|
|
}
|