hardhat-vscode
hardhat-vscode copied to clipboard
No completions of library methods
example
import "@openzeppelin/contracts/utils/Counters.sol";
contract TestContract {
using Counters for Counters.Counter;
Counters.Counter private _counter;
function test() public {
_counter.current();
_counter.increment();
_counter.decrement();
_counter.reset();
}
}
issues
Counters.<C>does not suggest theCounterstruct defined inCounters- the
_countervariable does not suggest any of theCountermethods
This issue is also being tracked on Linear.
We use Linear to manage our development process, but we keep the conversations on Github.
LINEAR-ID: 7c3b5f3e-99f7-442f-8e8c-5d9236c1db3b
Would love to have this resolved asap :(