2023-08-09 16:16:14 +00:00
|
|
|
library L {
|
|
|
|
/// @notice This event is defined in Library L
|
|
|
|
/// @dev This should not appear in Contract C dev doc
|
|
|
|
event SameSignatureEvent(uint16);
|
|
|
|
/// @notice This event is defined in Library L
|
|
|
|
/// @dev This should appear in Contract C dev doc
|
|
|
|
event LibraryEvent(uint32);
|
|
|
|
}
|
|
|
|
contract C {
|
|
|
|
/// @notice This event is defined in Contract C
|
|
|
|
/// @dev This should appear in Contract C dev doc
|
|
|
|
event SameSignatureEvent(uint16);
|
|
|
|
/// @notice This event is defined in Contract C
|
|
|
|
/// @dev This should appear in contract C dev doc
|
|
|
|
event ContractEvent(uint32);
|
|
|
|
function f() public {
|
|
|
|
emit L.SameSignatureEvent(0);
|
|
|
|
emit SameSignatureEvent(1);
|
|
|
|
emit L.LibraryEvent(2);
|
|
|
|
emit ContractEvent(3);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// ----
|
|
|
|
// ----
|
|
|
|
// :C devdoc
|
|
|
|
// {
|
|
|
|
// "events":
|
|
|
|
// {
|
|
|
|
// "ContractEvent(uint32)":
|
|
|
|
// {
|
|
|
|
// "details": "This should appear in contract C dev doc"
|
|
|
|
// },
|
|
|
|
// "LibraryEvent(uint32)":
|
|
|
|
// {
|
|
|
|
// "details": "This should appear in Contract C dev doc"
|
|
|
|
// },
|
|
|
|
// "SameSignatureEvent(uint16)":
|
|
|
|
// {
|
|
|
|
// "details": "This should appear in Contract C dev doc"
|
|
|
|
// }
|
|
|
|
// },
|
|
|
|
// "kind": "dev",
|
|
|
|
// "methods": {},
|
|
|
|
// "version": 1
|
|
|
|
// }
|
|
|
|
//
|
|
|
|
// :C userdoc
|
|
|
|
// {
|
|
|
|
// "events":
|
|
|
|
// {
|
|
|
|
// "ContractEvent(uint32)":
|
|
|
|
// {
|
|
|
|
// "notice": "This event is defined in Contract C"
|
|
|
|
// },
|
|
|
|
// "LibraryEvent(uint32)":
|
|
|
|
// {
|
|
|
|
// "notice": "This event is defined in Library L"
|
|
|
|
// },
|
|
|
|
// "SameSignatureEvent(uint16)":
|
|
|
|
// {
|
|
|
|
// "notice": "This event is defined in Contract C"
|
|
|
|
// }
|
|
|
|
// },
|
|
|
|
// "kind": "user",
|
|
|
|
// "methods": {},
|
|
|
|
// "version": 1
|
|
|
|
// }
|
2023-08-21 10:32:33 +00:00
|
|
|
//
|
|
|
|
// :L devdoc
|
|
|
|
// {
|
|
|
|
// "events":
|
|
|
|
// {
|
|
|
|
// "LibraryEvent(uint32)":
|
|
|
|
// {
|
|
|
|
// "details": "This should appear in Contract C dev doc"
|
|
|
|
// },
|
|
|
|
// "SameSignatureEvent(uint16)":
|
|
|
|
// {
|
|
|
|
// "details": "This should not appear in Contract C dev doc"
|
|
|
|
// }
|
|
|
|
// },
|
|
|
|
// "kind": "dev",
|
|
|
|
// "methods": {},
|
|
|
|
// "version": 1
|
|
|
|
// }
|
|
|
|
//
|
|
|
|
// :L userdoc
|
|
|
|
// {
|
|
|
|
// "events":
|
|
|
|
// {
|
|
|
|
// "LibraryEvent(uint32)":
|
|
|
|
// {
|
|
|
|
// "notice": "This event is defined in Library L"
|
|
|
|
// },
|
|
|
|
// "SameSignatureEvent(uint16)":
|
|
|
|
// {
|
|
|
|
// "notice": "This event is defined in Library L"
|
|
|
|
// }
|
|
|
|
// },
|
|
|
|
// "kind": "user",
|
|
|
|
// "methods": {},
|
|
|
|
// "version": 1
|
|
|
|
// }
|