2017-09-13 15:16:45 +00:00
|
|
|
/*
|
|
|
|
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/>.
|
|
|
|
*/
|
2020-07-17 14:54:12 +00:00
|
|
|
// SPDX-License-Identifier: GPL-3.0
|
2017-09-13 15:16:45 +00:00
|
|
|
|
|
|
|
#include <string>
|
|
|
|
|
2019-12-23 15:50:30 +00:00
|
|
|
namespace solidity::frontend::test
|
2017-09-13 15:16:45 +00:00
|
|
|
{
|
|
|
|
|
|
|
|
#define NEW_ENCODER(CODE) \
|
|
|
|
{ \
|
2020-11-19 15:58:41 +00:00
|
|
|
string sourceCodeTmp = sourceCode; \
|
|
|
|
sourceCode = "pragma abicoder v2;\n" + sourceCode; \
|
2017-09-13 15:16:45 +00:00
|
|
|
{ CODE } \
|
2020-11-19 15:58:41 +00:00
|
|
|
sourceCode = sourceCodeTmp; \
|
2017-09-13 15:16:45 +00:00
|
|
|
}
|
|
|
|
|
2020-11-19 15:58:41 +00:00
|
|
|
#define OLD_ENCODER(CODE) \
|
2017-09-13 15:16:45 +00:00
|
|
|
{ \
|
2020-11-19 15:58:41 +00:00
|
|
|
string sourceCodeTmp = sourceCode; \
|
|
|
|
sourceCode = "pragma abicoder v1;\n" + sourceCode; \
|
2017-09-13 15:16:45 +00:00
|
|
|
{ CODE } \
|
2020-11-19 15:58:41 +00:00
|
|
|
sourceCode = sourceCodeTmp; \
|
|
|
|
}
|
|
|
|
|
|
|
|
#define BOTH_ENCODERS(CODE) \
|
|
|
|
{ \
|
|
|
|
OLD_ENCODER(CODE) \
|
2017-09-13 15:16:45 +00:00
|
|
|
NEW_ENCODER(CODE) \
|
|
|
|
}
|
|
|
|
|
|
|
|
} // end namespaces
|