mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
remove solidity --interface
This commit is contained in:
parent
e7683f4722
commit
e5e2597702
@ -358,11 +358,6 @@ string const& CompilerStack::interface(string const& _contractName) const
|
|||||||
return metadata(_contractName, DocumentationType::ABIInterface);
|
return metadata(_contractName, DocumentationType::ABIInterface);
|
||||||
}
|
}
|
||||||
|
|
||||||
string const& CompilerStack::solidityInterface(string const& _contractName) const
|
|
||||||
{
|
|
||||||
return metadata(_contractName, DocumentationType::ABISolidityInterface);
|
|
||||||
}
|
|
||||||
|
|
||||||
string const& CompilerStack::metadata(string const& _contractName, DocumentationType _type) const
|
string const& CompilerStack::metadata(string const& _contractName, DocumentationType _type) const
|
||||||
{
|
{
|
||||||
if (!m_parseSuccessful)
|
if (!m_parseSuccessful)
|
||||||
@ -383,9 +378,6 @@ string const& CompilerStack::metadata(string const& _contractName, Documentation
|
|||||||
case DocumentationType::ABIInterface:
|
case DocumentationType::ABIInterface:
|
||||||
doc = ¤tContract.interface;
|
doc = ¤tContract.interface;
|
||||||
break;
|
break;
|
||||||
case DocumentationType::ABISolidityInterface:
|
|
||||||
doc = ¤tContract.solidityInterface;
|
|
||||||
break;
|
|
||||||
default:
|
default:
|
||||||
BOOST_THROW_EXCEPTION(InternalCompilerError() << errinfo_comment("Illegal documentation type."));
|
BOOST_THROW_EXCEPTION(InternalCompilerError() << errinfo_comment("Illegal documentation type."));
|
||||||
}
|
}
|
||||||
|
@ -63,8 +63,7 @@ enum class DocumentationType: uint8_t
|
|||||||
{
|
{
|
||||||
NatspecUser = 1,
|
NatspecUser = 1,
|
||||||
NatspecDev,
|
NatspecDev,
|
||||||
ABIInterface,
|
ABIInterface
|
||||||
ABISolidityInterface
|
|
||||||
};
|
};
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -167,9 +166,6 @@ public:
|
|||||||
/// @returns a string representing the contract interface in JSON.
|
/// @returns a string representing the contract interface in JSON.
|
||||||
/// Prerequisite: Successful call to parse or compile.
|
/// Prerequisite: Successful call to parse or compile.
|
||||||
std::string const& interface(std::string const& _contractName = "") const;
|
std::string const& interface(std::string const& _contractName = "") const;
|
||||||
/// @returns a string representing the contract interface in Solidity.
|
|
||||||
/// Prerequisite: Successful call to parse or compile.
|
|
||||||
std::string const& solidityInterface(std::string const& _contractName = "") const;
|
|
||||||
/// @returns a string representing the contract's documentation in JSON.
|
/// @returns a string representing the contract's documentation in JSON.
|
||||||
/// Prerequisite: Successful call to parse or compile.
|
/// Prerequisite: Successful call to parse or compile.
|
||||||
/// @param type The type of the documentation to get.
|
/// @param type The type of the documentation to get.
|
||||||
@ -219,7 +215,6 @@ private:
|
|||||||
eth::LinkerObject runtimeObject;
|
eth::LinkerObject runtimeObject;
|
||||||
eth::LinkerObject cloneObject;
|
eth::LinkerObject cloneObject;
|
||||||
mutable std::unique_ptr<std::string const> interface;
|
mutable std::unique_ptr<std::string const> interface;
|
||||||
mutable std::unique_ptr<std::string const> solidityInterface;
|
|
||||||
mutable std::unique_ptr<std::string const> userDocumentation;
|
mutable std::unique_ptr<std::string const> userDocumentation;
|
||||||
mutable std::unique_ptr<std::string const> devDocumentation;
|
mutable std::unique_ptr<std::string const> devDocumentation;
|
||||||
mutable std::unique_ptr<std::string const> sourceMapping;
|
mutable std::unique_ptr<std::string const> sourceMapping;
|
||||||
|
@ -21,8 +21,6 @@ string InterfaceHandler::documentation(
|
|||||||
return devDocumentation(_contractDef);
|
return devDocumentation(_contractDef);
|
||||||
case DocumentationType::ABIInterface:
|
case DocumentationType::ABIInterface:
|
||||||
return abiInterface(_contractDef);
|
return abiInterface(_contractDef);
|
||||||
case DocumentationType::ABISolidityInterface:
|
|
||||||
return ABISolidityInterface(_contractDef);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
BOOST_THROW_EXCEPTION(InternalCompilerError() << errinfo_comment("Unknown documentation type"));
|
BOOST_THROW_EXCEPTION(InternalCompilerError() << errinfo_comment("Unknown documentation type"));
|
||||||
@ -98,74 +96,6 @@ string InterfaceHandler::abiInterface(ContractDefinition const& _contractDef)
|
|||||||
return Json::FastWriter().write(abi);
|
return Json::FastWriter().write(abi);
|
||||||
}
|
}
|
||||||
|
|
||||||
string InterfaceHandler::ABISolidityInterface(ContractDefinition const& _contractDef)
|
|
||||||
{
|
|
||||||
string ret = (_contractDef.isLibrary() ? "library " : "contract ") + _contractDef.name() + "{";
|
|
||||||
|
|
||||||
auto populateParameters = [](vector<string> const& _paramNames, vector<string> const& _paramTypes)
|
|
||||||
{
|
|
||||||
string ret = "(";
|
|
||||||
for (size_t i = 0; i < _paramNames.size(); ++i)
|
|
||||||
ret += _paramTypes[i] + " " + _paramNames[i] + ",";
|
|
||||||
if (ret.size() != 1)
|
|
||||||
ret.pop_back();
|
|
||||||
return ret + ")";
|
|
||||||
};
|
|
||||||
// If this is a library, include all its enum and struct types. Should be more intelligent
|
|
||||||
// in the future and check what is actually used (it might even use types from other libraries
|
|
||||||
// or contracts or in the global scope).
|
|
||||||
if (_contractDef.isLibrary())
|
|
||||||
{
|
|
||||||
for (auto const& stru: _contractDef.definedStructs())
|
|
||||||
{
|
|
||||||
ret += "struct " + stru->name() + "{";
|
|
||||||
for (ASTPointer<VariableDeclaration> const& _member: stru->members())
|
|
||||||
ret += _member->type()->canonicalName(false) + " " + _member->name() + ";";
|
|
||||||
ret += "}";
|
|
||||||
}
|
|
||||||
for (auto const& enu: _contractDef.definedEnums())
|
|
||||||
{
|
|
||||||
ret += "enum " + enu->name() + "{";
|
|
||||||
for (ASTPointer<EnumValue> const& val: enu->members())
|
|
||||||
ret += val->name() + ",";
|
|
||||||
if (ret.back() == ',')
|
|
||||||
ret.pop_back();
|
|
||||||
ret += "}";
|
|
||||||
}
|
|
||||||
}
|
|
||||||
if (_contractDef.constructor())
|
|
||||||
{
|
|
||||||
auto externalFunction = FunctionType(*_contractDef.constructor()).interfaceFunctionType();
|
|
||||||
solAssert(!!externalFunction, "");
|
|
||||||
ret +=
|
|
||||||
"function " +
|
|
||||||
_contractDef.name() +
|
|
||||||
populateParameters(
|
|
||||||
externalFunction->parameterNames(),
|
|
||||||
externalFunction->parameterTypeNames(_contractDef.isLibrary())
|
|
||||||
) +
|
|
||||||
";";
|
|
||||||
}
|
|
||||||
for (auto const& it: _contractDef.interfaceFunctions())
|
|
||||||
{
|
|
||||||
ret += "function " + it.second->declaration().name() +
|
|
||||||
populateParameters(
|
|
||||||
it.second->parameterNames(),
|
|
||||||
it.second->parameterTypeNames(_contractDef.isLibrary())
|
|
||||||
) + (it.second->isConstant() ? "constant " : "");
|
|
||||||
if (it.second->returnParameterTypes().size())
|
|
||||||
ret += "returns" + populateParameters(
|
|
||||||
it.second->returnParameterNames(),
|
|
||||||
it.second->returnParameterTypeNames(_contractDef.isLibrary())
|
|
||||||
);
|
|
||||||
else if (ret.back() == ' ')
|
|
||||||
ret.pop_back();
|
|
||||||
ret += ";";
|
|
||||||
}
|
|
||||||
|
|
||||||
return ret + "}";
|
|
||||||
}
|
|
||||||
|
|
||||||
string InterfaceHandler::userDocumentation(ContractDefinition const& _contractDef)
|
string InterfaceHandler::userDocumentation(ContractDefinition const& _contractDef)
|
||||||
{
|
{
|
||||||
Json::Value doc;
|
Json::Value doc;
|
||||||
|
@ -73,7 +73,6 @@ public:
|
|||||||
/// @param _contractDef The contract definition
|
/// @param _contractDef The contract definition
|
||||||
/// @return A string with the json representation of the contract's ABI Interface
|
/// @return A string with the json representation of the contract's ABI Interface
|
||||||
static std::string abiInterface(ContractDefinition const& _contractDef);
|
static std::string abiInterface(ContractDefinition const& _contractDef);
|
||||||
static std::string ABISolidityInterface(ContractDefinition const& _contractDef);
|
|
||||||
/// Get the User documentation of the contract
|
/// Get the User documentation of the contract
|
||||||
/// @param _contractDef The contract definition
|
/// @param _contractDef The contract definition
|
||||||
/// @return A string with the json representation of the contract's user documentation
|
/// @return A string with the json representation of the contract's user documentation
|
||||||
|
@ -65,7 +65,6 @@ namespace solidity
|
|||||||
{
|
{
|
||||||
|
|
||||||
static string const g_argAbiStr = "abi";
|
static string const g_argAbiStr = "abi";
|
||||||
static string const g_argSolInterfaceStr = "interface";
|
|
||||||
static string const g_argSignatureHashes = "hashes";
|
static string const g_argSignatureHashes = "hashes";
|
||||||
static string const g_argGas = "gas";
|
static string const g_argGas = "gas";
|
||||||
static string const g_argAsmStr = "asm";
|
static string const g_argAsmStr = "asm";
|
||||||
@ -116,7 +115,6 @@ static bool needsHumanTargetedStdout(po::variables_map const& _args)
|
|||||||
return false;
|
return false;
|
||||||
for (string const& arg: {
|
for (string const& arg: {
|
||||||
g_argAbiStr,
|
g_argAbiStr,
|
||||||
g_argSolInterfaceStr,
|
|
||||||
g_argSignatureHashes,
|
g_argSignatureHashes,
|
||||||
g_argNatspecUserStr,
|
g_argNatspecUserStr,
|
||||||
g_argAstJson,
|
g_argAstJson,
|
||||||
@ -215,11 +213,6 @@ void CommandLineInterface::handleMeta(DocumentationType _type, string const& _co
|
|||||||
suffix = ".abi";
|
suffix = ".abi";
|
||||||
title = "Contract JSON ABI";
|
title = "Contract JSON ABI";
|
||||||
break;
|
break;
|
||||||
case DocumentationType::ABISolidityInterface:
|
|
||||||
argName = g_argSolInterfaceStr;
|
|
||||||
suffix = "_interface.sol";
|
|
||||||
title = "Contract Solidity ABI";
|
|
||||||
break;
|
|
||||||
case DocumentationType::NatspecUser:
|
case DocumentationType::NatspecUser:
|
||||||
argName = g_argNatspecUserStr;
|
argName = g_argNatspecUserStr;
|
||||||
suffix = ".docuser";
|
suffix = ".docuser";
|
||||||
@ -455,7 +448,6 @@ Allowed options)",
|
|||||||
(g_argRuntimeBinaryStr.c_str(), "Binary of the runtime part of the contracts in hex.")
|
(g_argRuntimeBinaryStr.c_str(), "Binary of the runtime part of the contracts in hex.")
|
||||||
(g_argCloneBinaryStr.c_str(), "Binary of the clone contracts in hex.")
|
(g_argCloneBinaryStr.c_str(), "Binary of the clone contracts in hex.")
|
||||||
(g_argAbiStr.c_str(), "ABI specification of the contracts.")
|
(g_argAbiStr.c_str(), "ABI specification of the contracts.")
|
||||||
(g_argSolInterfaceStr.c_str(), "Solidity interface of the contracts.")
|
|
||||||
(g_argSignatureHashes.c_str(), "Function signature hashes of the contracts.")
|
(g_argSignatureHashes.c_str(), "Function signature hashes of the contracts.")
|
||||||
(g_argNatspecUserStr.c_str(), "Natspec user documentation of all contracts.")
|
(g_argNatspecUserStr.c_str(), "Natspec user documentation of all contracts.")
|
||||||
(g_argNatspecDevStr.c_str(), "Natspec developer documentation of all contracts.")
|
(g_argNatspecDevStr.c_str(), "Natspec developer documentation of all contracts.")
|
||||||
@ -643,8 +635,6 @@ void CommandLineInterface::handleCombinedJSON()
|
|||||||
for (string const& contractName: contracts)
|
for (string const& contractName: contracts)
|
||||||
{
|
{
|
||||||
Json::Value contractData(Json::objectValue);
|
Json::Value contractData(Json::objectValue);
|
||||||
if (requests.count("interface"))
|
|
||||||
contractData["interface"] = m_compiler->solidityInterface(contractName);
|
|
||||||
if (requests.count("abi"))
|
if (requests.count("abi"))
|
||||||
contractData["abi"] = m_compiler->interface(contractName);
|
contractData["abi"] = m_compiler->interface(contractName);
|
||||||
if (requests.count("bin"))
|
if (requests.count("bin"))
|
||||||
@ -901,7 +891,6 @@ void CommandLineInterface::outputCompilationResults()
|
|||||||
handleBytecode(contract);
|
handleBytecode(contract);
|
||||||
handleSignatureHashes(contract);
|
handleSignatureHashes(contract);
|
||||||
handleMeta(DocumentationType::ABIInterface, contract);
|
handleMeta(DocumentationType::ABIInterface, contract);
|
||||||
handleMeta(DocumentationType::ABISolidityInterface, contract);
|
|
||||||
handleMeta(DocumentationType::NatspecDev, contract);
|
handleMeta(DocumentationType::NatspecDev, contract);
|
||||||
handleMeta(DocumentationType::NatspecUser, contract);
|
handleMeta(DocumentationType::NatspecUser, contract);
|
||||||
} // end of contracts iteration
|
} // end of contracts iteration
|
||||||
|
@ -207,7 +207,6 @@ string compile(StringMap const& _sources, bool _optimize, CStyleReadFileCallback
|
|||||||
for (string const& contractName: compiler.contractNames())
|
for (string const& contractName: compiler.contractNames())
|
||||||
{
|
{
|
||||||
Json::Value contractData(Json::objectValue);
|
Json::Value contractData(Json::objectValue);
|
||||||
contractData["solidityInterface"] = compiler.solidityInterface(contractName);
|
|
||||||
contractData["interface"] = compiler.interface(contractName);
|
contractData["interface"] = compiler.interface(contractName);
|
||||||
contractData["bytecode"] = compiler.object(contractName).toHex();
|
contractData["bytecode"] = compiler.object(contractName).toHex();
|
||||||
contractData["runtimeBytecode"] = compiler.runtimeObject(contractName).toHex();
|
contractData["runtimeBytecode"] = compiler.runtimeObject(contractName).toHex();
|
||||||
|
@ -1,165 +0,0 @@
|
|||||||
/*
|
|
||||||
This file is part of cpp-ethereum.
|
|
||||||
|
|
||||||
cpp-ethereum 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.
|
|
||||||
|
|
||||||
cpp-ethereum 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 cpp-ethereum. If not, see <http://www.gnu.org/licenses/>.
|
|
||||||
*/
|
|
||||||
/**
|
|
||||||
* @author Christian <c@ethdev.com>
|
|
||||||
* @date 2015
|
|
||||||
* Unit tests for generating source interfaces for Solidity contracts.
|
|
||||||
*/
|
|
||||||
|
|
||||||
#include "../TestHelper.h"
|
|
||||||
#include <libsolidity/interface/CompilerStack.h>
|
|
||||||
#include <libsolidity/ast/AST.h>
|
|
||||||
|
|
||||||
using namespace std;
|
|
||||||
|
|
||||||
namespace dev
|
|
||||||
{
|
|
||||||
namespace solidity
|
|
||||||
{
|
|
||||||
namespace test
|
|
||||||
{
|
|
||||||
|
|
||||||
class SolidityInterfaceChecker
|
|
||||||
{
|
|
||||||
public:
|
|
||||||
SolidityInterfaceChecker(): m_compilerStack(false) {}
|
|
||||||
|
|
||||||
/// Compiles the given code, generates the interface and parses that again.
|
|
||||||
ContractDefinition const& checkInterface(string const& _code, string const& _contractName = "")
|
|
||||||
{
|
|
||||||
m_code = _code;
|
|
||||||
ETH_TEST_REQUIRE_NO_THROW(m_compilerStack.parse(_code), "Parsing failed");
|
|
||||||
m_interface = m_compilerStack.metadata("", DocumentationType::ABISolidityInterface);
|
|
||||||
ETH_TEST_REQUIRE_NO_THROW(m_reCompiler.parse(m_interface), "Interface parsing failed");
|
|
||||||
return m_reCompiler.contractDefinition(_contractName);
|
|
||||||
}
|
|
||||||
|
|
||||||
string sourcePart(ASTNode const& _node) const
|
|
||||||
{
|
|
||||||
SourceLocation location = _node.location();
|
|
||||||
BOOST_REQUIRE(!location.isEmpty());
|
|
||||||
return m_interface.substr(location.start, location.end - location.start);
|
|
||||||
}
|
|
||||||
|
|
||||||
protected:
|
|
||||||
string m_code;
|
|
||||||
string m_interface;
|
|
||||||
CompilerStack m_compilerStack;
|
|
||||||
CompilerStack m_reCompiler;
|
|
||||||
};
|
|
||||||
|
|
||||||
BOOST_FIXTURE_TEST_SUITE(SolidityInterface, SolidityInterfaceChecker)
|
|
||||||
|
|
||||||
BOOST_AUTO_TEST_CASE(empty_contract)
|
|
||||||
{
|
|
||||||
ContractDefinition const& contract = checkInterface("contract test {}");
|
|
||||||
BOOST_CHECK_EQUAL(sourcePart(contract), "contract test{}");
|
|
||||||
}
|
|
||||||
|
|
||||||
BOOST_AUTO_TEST_CASE(single_function)
|
|
||||||
{
|
|
||||||
ContractDefinition const& contract = checkInterface(
|
|
||||||
"contract test {\n"
|
|
||||||
" function f(uint a) returns(uint d) { return a * 7; }\n"
|
|
||||||
"}\n");
|
|
||||||
BOOST_REQUIRE_EQUAL(1, contract.definedFunctions().size());
|
|
||||||
BOOST_CHECK_EQUAL(sourcePart(*contract.definedFunctions().front()),
|
|
||||||
"function f(uint256 a)returns(uint256 d);");
|
|
||||||
}
|
|
||||||
|
|
||||||
BOOST_AUTO_TEST_CASE(single_constant_function)
|
|
||||||
{
|
|
||||||
ContractDefinition const& contract = checkInterface(
|
|
||||||
"contract test { function f(uint a) constant returns(bytes1 x) { 1==2; } }");
|
|
||||||
BOOST_REQUIRE_EQUAL(1, contract.definedFunctions().size());
|
|
||||||
BOOST_CHECK_EQUAL(sourcePart(*contract.definedFunctions().front()),
|
|
||||||
"function f(uint256 a)constant returns(bytes1 x);");
|
|
||||||
}
|
|
||||||
|
|
||||||
BOOST_AUTO_TEST_CASE(multiple_functions)
|
|
||||||
{
|
|
||||||
char const* sourceCode = "contract test {\n"
|
|
||||||
" function f(uint a) returns(uint d) { return a * 7; }\n"
|
|
||||||
" function g(uint b) returns(uint e) { return b * 8; }\n"
|
|
||||||
"}\n";
|
|
||||||
ContractDefinition const& contract = checkInterface(sourceCode);
|
|
||||||
set<string> expectation({"function f(uint256 a)returns(uint256 d);",
|
|
||||||
"function g(uint256 b)returns(uint256 e);"});
|
|
||||||
BOOST_REQUIRE_EQUAL(2, contract.definedFunctions().size());
|
|
||||||
BOOST_CHECK(expectation == set<string>({sourcePart(*contract.definedFunctions().at(0)),
|
|
||||||
sourcePart(*contract.definedFunctions().at(1))}));
|
|
||||||
}
|
|
||||||
|
|
||||||
BOOST_AUTO_TEST_CASE(exclude_fallback_function)
|
|
||||||
{
|
|
||||||
char const* sourceCode = "contract test { function() {} }";
|
|
||||||
ContractDefinition const& contract = checkInterface(sourceCode);
|
|
||||||
BOOST_CHECK_EQUAL(sourcePart(contract), "contract test{}");
|
|
||||||
}
|
|
||||||
|
|
||||||
BOOST_AUTO_TEST_CASE(events)
|
|
||||||
{
|
|
||||||
char const* sourceCode = "contract test {\n"
|
|
||||||
" function f(uint a) returns(uint d) { return a * 7; }\n"
|
|
||||||
" event e1(uint b, address indexed c); \n"
|
|
||||||
" event e2(); \n"
|
|
||||||
"}\n";
|
|
||||||
ContractDefinition const& contract = checkInterface(sourceCode);
|
|
||||||
// events should not appear in the Solidity Interface
|
|
||||||
BOOST_REQUIRE_EQUAL(0, contract.events().size());
|
|
||||||
}
|
|
||||||
|
|
||||||
BOOST_AUTO_TEST_CASE(inheritance)
|
|
||||||
{
|
|
||||||
char const* sourceCode =
|
|
||||||
" contract Base { \n"
|
|
||||||
" function baseFunction(uint p) returns (uint i) { return p; } \n"
|
|
||||||
" event baseEvent(bytes32 indexed evtArgBase); \n"
|
|
||||||
" } \n"
|
|
||||||
" contract Derived is Base { \n"
|
|
||||||
" function derivedFunction(bytes32 p) returns (bytes32 i) { return p; } \n"
|
|
||||||
" event derivedEvent(uint indexed evtArgDerived); \n"
|
|
||||||
" }";
|
|
||||||
ContractDefinition const& contract = checkInterface(sourceCode);
|
|
||||||
set<string> expectedFunctions({"function baseFunction(uint256 p)returns(uint256 i);",
|
|
||||||
"function derivedFunction(bytes32 p)returns(bytes32 i);"});
|
|
||||||
BOOST_REQUIRE_EQUAL(2, contract.definedFunctions().size());
|
|
||||||
BOOST_CHECK(expectedFunctions == set<string>({sourcePart(*contract.definedFunctions().at(0)),
|
|
||||||
sourcePart(*contract.definedFunctions().at(1))}));
|
|
||||||
}
|
|
||||||
|
|
||||||
BOOST_AUTO_TEST_CASE(libraries)
|
|
||||||
{
|
|
||||||
char const* sourceCode = R"(
|
|
||||||
library Lib {
|
|
||||||
struct Str { uint a; }
|
|
||||||
enum E { E1, E2 }
|
|
||||||
function f(uint[] x,Str storage y,E z) external;
|
|
||||||
}
|
|
||||||
)";
|
|
||||||
ContractDefinition const& contract = checkInterface(sourceCode);
|
|
||||||
BOOST_CHECK(contract.isLibrary());
|
|
||||||
set<string> expectedFunctions({"function f(uint256[] x,Lib.Str storage y,Lib.E z);"});
|
|
||||||
BOOST_REQUIRE_EQUAL(1, contract.definedFunctions().size());
|
|
||||||
BOOST_CHECK(expectedFunctions == set<string>({sourcePart(*contract.definedFunctions().at(0))}));
|
|
||||||
}
|
|
||||||
|
|
||||||
BOOST_AUTO_TEST_SUITE_END()
|
|
||||||
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
Loading…
Reference in New Issue
Block a user