mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
Rename handleMeta to handleNatspec
This commit is contained in:
parent
cd5d93da2a
commit
bbef2cd4a8
@ -284,7 +284,7 @@ void CommandLineInterface::handleABI(string const& _contract)
|
|||||||
cout << "Contract JSON ABI " << endl << data << endl;
|
cout << "Contract JSON ABI " << endl << data << endl;
|
||||||
}
|
}
|
||||||
|
|
||||||
void CommandLineInterface::handleMeta(DocumentationType _type, string const& _contract)
|
void CommandLineInterface::handleNatspec(DocumentationType _type, string const& _contract)
|
||||||
{
|
{
|
||||||
std::string argName;
|
std::string argName;
|
||||||
std::string suffix;
|
std::string suffix;
|
||||||
@ -1073,8 +1073,8 @@ void CommandLineInterface::outputCompilationResults()
|
|||||||
handleSignatureHashes(contract);
|
handleSignatureHashes(contract);
|
||||||
handleOnChainMetadata(contract);
|
handleOnChainMetadata(contract);
|
||||||
handleABI(contract);
|
handleABI(contract);
|
||||||
handleMeta(DocumentationType::NatspecDev, contract);
|
handleNatspec(DocumentationType::NatspecDev, contract);
|
||||||
handleMeta(DocumentationType::NatspecUser, contract);
|
handleNatspec(DocumentationType::NatspecUser, contract);
|
||||||
} // end of contracts iteration
|
} // end of contracts iteration
|
||||||
|
|
||||||
handleFormal();
|
handleFormal();
|
||||||
|
@ -68,7 +68,7 @@ private:
|
|||||||
void handleSignatureHashes(std::string const& _contract);
|
void handleSignatureHashes(std::string const& _contract);
|
||||||
void handleOnChainMetadata(std::string const& _contract);
|
void handleOnChainMetadata(std::string const& _contract);
|
||||||
void handleABI(std::string const& _contract);
|
void handleABI(std::string const& _contract);
|
||||||
void handleMeta(DocumentationType _type, std::string const& _contract);
|
void handleNatspec(DocumentationType _type, std::string const& _contract);
|
||||||
void handleGasEstimation(std::string const& _contract);
|
void handleGasEstimation(std::string const& _contract);
|
||||||
void handleFormal();
|
void handleFormal();
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user