mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
Rename ErrorMesage to ErrorMessage
This commit is contained in:
parent
58334cf4ac
commit
e0ff70778a
@ -527,13 +527,13 @@ StringMap CompilerStack::loadMissingSources(SourceUnit const& _ast, std::string
|
||||
result = m_readFile(importPath);
|
||||
|
||||
if (result.success)
|
||||
newSources[importPath] = result.contentsOrErrorMesage;
|
||||
newSources[importPath] = result.contentsOrErrorMessage;
|
||||
else
|
||||
{
|
||||
auto err = make_shared<Error>(Error::Type::ParserError);
|
||||
*err <<
|
||||
errinfo_sourceLocation(import->location()) <<
|
||||
errinfo_comment("Source \"" + importPath + "\" not found: " + result.contentsOrErrorMesage);
|
||||
errinfo_comment("Source \"" + importPath + "\" not found: " + result.contentsOrErrorMessage);
|
||||
m_errors.push_back(std::move(err));
|
||||
continue;
|
||||
}
|
||||
|
@ -80,7 +80,7 @@ public:
|
||||
struct ReadFileResult
|
||||
{
|
||||
bool success;
|
||||
std::string contentsOrErrorMesage;
|
||||
std::string contentsOrErrorMessage;
|
||||
};
|
||||
|
||||
/// File reading callback.
|
||||
|
@ -143,18 +143,18 @@ string compile(StringMap const& _sources, bool _optimize, CStyleReadFileCallback
|
||||
if (!contents_c && !error_c)
|
||||
{
|
||||
result.success = false;
|
||||
result.contentsOrErrorMesage = "File not found.";
|
||||
result.contentsOrErrorMessage = "File not found.";
|
||||
}
|
||||
if (contents_c)
|
||||
{
|
||||
result.success = true;
|
||||
result.contentsOrErrorMesage = string(contents_c);
|
||||
result.contentsOrErrorMessage = string(contents_c);
|
||||
free(contents_c);
|
||||
}
|
||||
if (error_c)
|
||||
{
|
||||
result.success = false;
|
||||
result.contentsOrErrorMesage = string(error_c);
|
||||
result.contentsOrErrorMessage = string(error_c);
|
||||
free(error_c);
|
||||
}
|
||||
return result;
|
||||
|
Loading…
Reference in New Issue
Block a user