Rename AsmData -> AST

Also attempt to only include ASTForward where appropriate.
This commit is contained in:
Alex Beregszaszi
2020-11-25 17:58:02 +00:00
parent 7eb5fc31f8
commit a22077f736
157 changed files with 175 additions and 152 deletions
+6 -1
View File
@@ -21,7 +21,7 @@
#include <libyul/AsmAnalysis.h>
#include <libyul/AsmData.h>
#include <libyul/AST.h>
#include <libyul/AsmScopeFiller.h>
#include <libyul/AsmScope.h>
#include <libyul/AsmAnalysisInfo.h>
@@ -668,3 +668,8 @@ bool AsmAnalyzer::validateInstructions(evmasm::Instruction _instr, SourceLocatio
return true;
}
bool AsmAnalyzer::validateInstructions(FunctionCall const& _functionCall)
{
return validateInstructions(_functionCall.functionName.name.str(), _functionCall.functionName.location);
}