mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
Introduce FunctionKind::Declaration and allow accessing function signatures via contract name.
This commit is contained in:
+20
@@ -0,0 +1,20 @@
|
||||
contract A {
|
||||
function f() external {}
|
||||
function g(uint256) external {}
|
||||
}
|
||||
contract B {
|
||||
function f() external returns (uint256) {}
|
||||
function g(uint256) external returns (uint256) {}
|
||||
}
|
||||
contract C {
|
||||
function test1() external returns(bytes4, bytes4, bytes4, bytes4) {
|
||||
return (A.f.selector, A.g.selector, B.f.selector, B.g.selector);
|
||||
}
|
||||
function test2() external returns(bytes4, bytes4, bytes4, bytes4) {
|
||||
A a; B b;
|
||||
return (a.f.selector, a.g.selector, b.f.selector, b.g.selector);
|
||||
}
|
||||
}
|
||||
// ----
|
||||
// test1() -> left(0x26121ff0), left(0xe420264a), left(0x26121ff0), left(0xe420264a)
|
||||
// test2() -> left(0x26121ff0), left(0xe420264a), left(0x26121ff0), left(0xe420264a)
|
||||
Reference in New Issue
Block a user