solidity/test/libsolidity/SyntaxTest.h

60 lines
1.6 KiB
C
Raw Normal View History

/*
This file is part of solidity.
solidity is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
solidity is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with solidity. If not, see <http://www.gnu.org/licenses/>.
*/
// SPDX-License-Identifier: GPL-3.0
#pragma once
#include <test/libsolidity/AnalysisFramework.h>
#include <test/TestCase.h>
2020-02-04 18:40:32 +00:00
#include <test/CommonSyntaxTest.h>
#include <liblangutil/Exceptions.h>
#include <libsolutil/AnsiColorized.h>
#include <iosfwd>
#include <string>
#include <vector>
#include <utility>
namespace solidity::frontend::test
{
2020-02-04 18:40:32 +00:00
using solidity::test::SyntaxTestError;
2020-02-04 18:40:32 +00:00
class SyntaxTest: public AnalysisFramework, public solidity::test::CommonSyntaxTest
{
public:
static std::unique_ptr<TestCase> create(Config const& _config)
{
2023-08-04 20:54:48 +00:00
return std::make_unique<SyntaxTest>(_config.filename, _config.evmVersion);
}
SyntaxTest(
std::string const& _filename,
langutil::EVMVersion _evmVersion,
langutil::Error::Severity _minSeverity = langutil::Error::Severity::Info
);
2018-11-15 15:47:52 +00:00
protected:
void setupCompiler(CompilerStack& _compiler) override;
2020-02-04 18:40:32 +00:00
void parseAndAnalyze() override;
virtual void filterObtainedErrors();
bool m_optimiseYul{};
langutil::Error::Severity m_minSeverity{};
};
}