Rename handleMeta to handleNatspec

This commit is contained in:
Alex Beregszaszi 2017-05-11 09:10:41 +01:00
parent cd5d93da2a
commit bbef2cd4a8
2 changed files with 4 additions and 4 deletions

View File

@ -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();

View File

@ -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();