2015-04-24 15:35:16 +00:00
|
|
|
/*
|
2016-11-18 23:13:20 +00:00
|
|
|
This file is part of solidity.
|
2015-04-24 15:35:16 +00:00
|
|
|
|
2016-11-18 23:13:20 +00:00
|
|
|
solidity is free software: you can redistribute it and/or modify
|
2015-04-24 15:35:16 +00:00
|
|
|
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.
|
|
|
|
|
2016-11-18 23:13:20 +00:00
|
|
|
solidity is distributed in the hope that it will be useful,
|
2015-04-24 15:35:16 +00:00
|
|
|
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
|
2016-11-18 23:13:20 +00:00
|
|
|
along with solidity. If not, see <http://www.gnu.org/licenses/>.
|
2015-04-24 15:35:16 +00:00
|
|
|
*/
|
2020-07-17 14:54:12 +00:00
|
|
|
// SPDX-License-Identifier: GPL-3.0
|
2015-04-24 15:35:16 +00:00
|
|
|
|
2017-07-13 09:33:06 +00:00
|
|
|
#include <libevmasm/AssemblyItem.h>
|
|
|
|
|
2020-06-17 09:17:35 +00:00
|
|
|
#include <libevmasm/Assembly.h>
|
|
|
|
|
2020-01-06 10:52:23 +00:00
|
|
|
#include <libsolutil/CommonData.h>
|
2020-06-17 09:17:35 +00:00
|
|
|
#include <libsolutil/StringUtils.h>
|
2020-01-06 10:52:23 +00:00
|
|
|
#include <libsolutil/FixedHash.h>
|
2020-02-24 17:11:20 +00:00
|
|
|
#include <liblangutil/SourceLocation.h>
|
2017-07-13 09:33:06 +00:00
|
|
|
|
2015-04-24 15:35:16 +00:00
|
|
|
#include <fstream>
|
|
|
|
|
|
|
|
using namespace std;
|
2019-12-11 16:31:36 +00:00
|
|
|
using namespace solidity;
|
|
|
|
using namespace solidity::evmasm;
|
2020-02-24 17:11:20 +00:00
|
|
|
using namespace solidity::langutil;
|
2015-04-24 15:35:16 +00:00
|
|
|
|
2018-04-26 22:56:29 +00:00
|
|
|
static_assert(sizeof(size_t) <= 8, "size_t must be at most 64-bits wide");
|
|
|
|
|
2016-11-10 17:16:21 +00:00
|
|
|
AssemblyItem AssemblyItem::toSubAssemblyTag(size_t _subId) const
|
|
|
|
{
|
2019-12-11 16:31:36 +00:00
|
|
|
assertThrow(data() < (u256(1) << 64), util::Exception, "Tag already has subassembly set.");
|
|
|
|
assertThrow(m_type == PushTag || m_type == Tag, util::Exception, "");
|
2020-06-02 13:10:14 +00:00
|
|
|
auto tag = static_cast<size_t>(u256(data()) & 0xffffffffffffffffULL);
|
2016-11-10 17:16:21 +00:00
|
|
|
AssemblyItem r = *this;
|
|
|
|
r.m_type = PushTag;
|
2018-04-26 22:56:29 +00:00
|
|
|
r.setPushTagSubIdAndTag(_subId, tag);
|
2016-11-10 17:16:21 +00:00
|
|
|
return r;
|
|
|
|
}
|
|
|
|
|
|
|
|
pair<size_t, size_t> AssemblyItem::splitForeignPushTag() const
|
|
|
|
{
|
2019-12-11 16:31:36 +00:00
|
|
|
assertThrow(m_type == PushTag || m_type == Tag, util::Exception, "");
|
2018-04-26 22:56:29 +00:00
|
|
|
u256 combined = u256(data());
|
2020-06-02 13:10:14 +00:00
|
|
|
size_t subId = static_cast<size_t>((combined >> 64) - 1);
|
|
|
|
size_t tag = static_cast<size_t>(combined & 0xffffffffffffffffULL);
|
2018-04-26 22:56:29 +00:00
|
|
|
return make_pair(subId, tag);
|
2016-11-10 17:16:21 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void AssemblyItem::setPushTagSubIdAndTag(size_t _subId, size_t _tag)
|
|
|
|
{
|
2019-12-11 16:31:36 +00:00
|
|
|
assertThrow(m_type == PushTag || m_type == Tag, util::Exception, "");
|
2018-04-26 22:56:29 +00:00
|
|
|
u256 data = _tag;
|
2020-06-02 13:10:14 +00:00
|
|
|
if (_subId != numeric_limits<size_t>::max())
|
2018-04-26 22:56:29 +00:00
|
|
|
data |= (u256(_subId) + 1) << 64;
|
|
|
|
setData(data);
|
2016-11-10 17:16:21 +00:00
|
|
|
}
|
|
|
|
|
2020-06-05 12:33:20 +00:00
|
|
|
size_t AssemblyItem::bytesRequired(size_t _addressLength) const
|
2015-04-24 15:35:16 +00:00
|
|
|
{
|
|
|
|
switch (m_type)
|
|
|
|
{
|
|
|
|
case Operation:
|
|
|
|
case Tag: // 1 byte for the JUMPDEST
|
|
|
|
return 1;
|
|
|
|
case PushString:
|
2017-09-18 10:04:24 +00:00
|
|
|
return 1 + 32;
|
2015-04-24 15:35:16 +00:00
|
|
|
case Push:
|
2020-06-05 12:33:20 +00:00
|
|
|
return 1 + max<size_t>(1, util::bytesRequired(data()));
|
2015-04-24 15:35:16 +00:00
|
|
|
case PushSubSize:
|
|
|
|
case PushProgramSize:
|
2017-09-18 10:04:24 +00:00
|
|
|
return 1 + 4; // worst case: a 16MB program
|
2015-04-24 15:35:16 +00:00
|
|
|
case PushTag:
|
|
|
|
case PushData:
|
|
|
|
case PushSub:
|
|
|
|
return 1 + _addressLength;
|
2015-09-10 10:02:18 +00:00
|
|
|
case PushLibraryAddress:
|
2017-11-14 11:58:04 +00:00
|
|
|
case PushDeployTimeAddress:
|
2017-09-18 10:04:24 +00:00
|
|
|
return 1 + 20;
|
2020-03-10 13:30:04 +00:00
|
|
|
case PushImmutable:
|
|
|
|
return 1 + 32;
|
|
|
|
case AssignImmutable:
|
|
|
|
if (m_immutableOccurrences)
|
|
|
|
return 1 + (3 + 32) * *m_immutableOccurrences;
|
|
|
|
else
|
|
|
|
return 1 + (3 + 32) * 1024; // 1024 occurrences are beyond the maximum code size anyways.
|
2015-04-24 15:35:16 +00:00
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
2019-11-22 17:02:12 +00:00
|
|
|
assertThrow(false, InvalidOpcode, "");
|
2015-04-24 15:35:16 +00:00
|
|
|
}
|
|
|
|
|
2020-06-02 13:10:14 +00:00
|
|
|
size_t AssemblyItem::arguments() const
|
2017-01-24 00:09:10 +00:00
|
|
|
{
|
|
|
|
if (type() == Operation)
|
2020-06-02 13:10:14 +00:00
|
|
|
return static_cast<size_t>(instructionInfo(instruction()).args);
|
2020-03-10 13:30:04 +00:00
|
|
|
else if (type() == AssignImmutable)
|
2020-10-14 11:20:20 +00:00
|
|
|
return 2;
|
2017-01-24 00:09:10 +00:00
|
|
|
else
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2020-06-02 13:10:14 +00:00
|
|
|
size_t AssemblyItem::returnValues() const
|
2015-04-24 15:35:16 +00:00
|
|
|
{
|
|
|
|
switch (m_type)
|
|
|
|
{
|
|
|
|
case Operation:
|
2020-06-02 13:10:14 +00:00
|
|
|
return static_cast<size_t>(instructionInfo(instruction()).ret);
|
2015-04-24 15:35:16 +00:00
|
|
|
case Push:
|
|
|
|
case PushString:
|
|
|
|
case PushTag:
|
|
|
|
case PushData:
|
|
|
|
case PushSub:
|
|
|
|
case PushSubSize:
|
|
|
|
case PushProgramSize:
|
2015-09-10 10:02:18 +00:00
|
|
|
case PushLibraryAddress:
|
2020-03-10 13:30:04 +00:00
|
|
|
case PushImmutable:
|
2017-11-14 11:58:04 +00:00
|
|
|
case PushDeployTimeAddress:
|
2015-04-24 15:35:16 +00:00
|
|
|
return 1;
|
|
|
|
case Tag:
|
|
|
|
return 0;
|
2018-11-21 20:42:19 +00:00
|
|
|
default:
|
|
|
|
break;
|
2015-04-24 15:35:16 +00:00
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2016-11-15 13:01:11 +00:00
|
|
|
bool AssemblyItem::canBeFunctional() const
|
|
|
|
{
|
2018-11-13 09:57:15 +00:00
|
|
|
if (m_jumpType != JumpType::Ordinary)
|
|
|
|
return false;
|
2016-11-15 13:01:11 +00:00
|
|
|
switch (m_type)
|
|
|
|
{
|
|
|
|
case Operation:
|
2017-10-03 10:45:44 +00:00
|
|
|
return !isDupInstruction(instruction()) && !isSwapInstruction(instruction());
|
2016-11-15 13:01:11 +00:00
|
|
|
case Push:
|
|
|
|
case PushString:
|
|
|
|
case PushTag:
|
|
|
|
case PushData:
|
|
|
|
case PushSub:
|
|
|
|
case PushSubSize:
|
|
|
|
case PushProgramSize:
|
|
|
|
case PushLibraryAddress:
|
2017-11-14 11:58:04 +00:00
|
|
|
case PushDeployTimeAddress:
|
2020-03-10 13:30:04 +00:00
|
|
|
case PushImmutable:
|
2016-11-15 13:01:11 +00:00
|
|
|
return true;
|
|
|
|
case Tag:
|
|
|
|
return false;
|
2018-11-21 20:42:19 +00:00
|
|
|
default:
|
|
|
|
break;
|
2016-11-15 13:01:11 +00:00
|
|
|
}
|
2018-11-21 20:42:19 +00:00
|
|
|
return false;
|
2016-11-15 13:01:11 +00:00
|
|
|
}
|
|
|
|
|
2015-04-24 15:35:16 +00:00
|
|
|
string AssemblyItem::getJumpTypeAsString() const
|
|
|
|
{
|
|
|
|
switch (m_jumpType)
|
|
|
|
{
|
|
|
|
case JumpType::IntoFunction:
|
|
|
|
return "[in]";
|
|
|
|
case JumpType::OutOfFunction:
|
|
|
|
return "[out]";
|
|
|
|
case JumpType::Ordinary:
|
|
|
|
default:
|
|
|
|
return "";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-06-17 09:17:35 +00:00
|
|
|
string AssemblyItem::toAssemblyText(Assembly const& _assembly) const
|
2016-11-15 13:01:11 +00:00
|
|
|
{
|
|
|
|
string text;
|
|
|
|
switch (type())
|
|
|
|
{
|
|
|
|
case Operation:
|
|
|
|
{
|
|
|
|
assertThrow(isValidInstruction(instruction()), AssemblyException, "Invalid instruction.");
|
|
|
|
string name = instructionInfo(instruction()).name;
|
|
|
|
transform(name.begin(), name.end(), name.begin(), [](unsigned char _c) { return tolower(_c); });
|
|
|
|
text = name;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case Push:
|
2019-12-11 16:31:36 +00:00
|
|
|
text = toHex(util::toCompactBigEndian(data(), 1), util::HexPrefix::Add);
|
2016-11-15 13:01:11 +00:00
|
|
|
break;
|
|
|
|
case PushString:
|
2019-12-11 16:31:36 +00:00
|
|
|
text = string("data_") + util::toHex(data());
|
2016-11-15 13:01:11 +00:00
|
|
|
break;
|
|
|
|
case PushTag:
|
2017-04-11 17:53:55 +00:00
|
|
|
{
|
2017-04-12 14:30:27 +00:00
|
|
|
size_t sub{0};
|
|
|
|
size_t tag{0};
|
2017-04-11 17:53:55 +00:00
|
|
|
tie(sub, tag) = splitForeignPushTag();
|
2020-06-02 13:10:14 +00:00
|
|
|
if (sub == numeric_limits<size_t>::max())
|
2017-04-11 17:53:55 +00:00
|
|
|
text = string("tag_") + to_string(tag);
|
|
|
|
else
|
|
|
|
text = string("tag_") + to_string(sub) + "_" + to_string(tag);
|
2016-11-15 13:01:11 +00:00
|
|
|
break;
|
2017-04-11 17:53:55 +00:00
|
|
|
}
|
2016-11-15 13:01:11 +00:00
|
|
|
case Tag:
|
2017-04-11 17:53:55 +00:00
|
|
|
assertThrow(data() < 0x10000, AssemblyException, "Declaration of sub-assembly tag.");
|
2020-06-02 13:10:14 +00:00
|
|
|
text = string("tag_") + to_string(static_cast<size_t>(data())) + ":";
|
2016-11-15 13:01:11 +00:00
|
|
|
break;
|
|
|
|
case PushData:
|
2019-12-11 16:31:36 +00:00
|
|
|
text = string("data_") + util::toHex(data());
|
2016-11-15 13:01:11 +00:00
|
|
|
break;
|
|
|
|
case PushSub:
|
|
|
|
case PushSubSize:
|
2020-06-17 09:17:35 +00:00
|
|
|
{
|
|
|
|
vector<string> subPathComponents;
|
|
|
|
for (size_t subPathComponentId: _assembly.decodeSubPath(static_cast<size_t>(data())))
|
|
|
|
subPathComponents.emplace_back("sub_" + to_string(subPathComponentId));
|
|
|
|
text =
|
|
|
|
(type() == PushSub ? "dataOffset"s : "dataSize"s) +
|
|
|
|
"(" +
|
|
|
|
solidity::util::joinHumanReadable(subPathComponents, ".") +
|
|
|
|
")";
|
2016-11-15 13:01:11 +00:00
|
|
|
break;
|
2020-06-17 09:17:35 +00:00
|
|
|
}
|
2016-11-15 13:01:11 +00:00
|
|
|
case PushProgramSize:
|
2016-12-09 10:03:29 +00:00
|
|
|
text = string("bytecodeSize");
|
2016-11-15 13:01:11 +00:00
|
|
|
break;
|
|
|
|
case PushLibraryAddress:
|
2019-12-11 16:31:36 +00:00
|
|
|
text = string("linkerSymbol(\"") + util::toHex(data()) + string("\")");
|
2016-11-15 13:01:11 +00:00
|
|
|
break;
|
2017-11-14 11:58:04 +00:00
|
|
|
case PushDeployTimeAddress:
|
|
|
|
text = string("deployTimeAddress()");
|
|
|
|
break;
|
2020-03-10 13:30:04 +00:00
|
|
|
case PushImmutable:
|
|
|
|
text = string("immutable(\"") + toHex(util::toCompactBigEndian(data(), 1), util::HexPrefix::Add) + "\")";
|
|
|
|
break;
|
|
|
|
case AssignImmutable:
|
|
|
|
text = string("assignImmutable(\"") + toHex(util::toCompactBigEndian(data(), 1), util::HexPrefix::Add) + "\")";
|
|
|
|
break;
|
2016-11-15 13:01:11 +00:00
|
|
|
case UndefinedItem:
|
|
|
|
assertThrow(false, AssemblyException, "Invalid assembly item.");
|
|
|
|
break;
|
|
|
|
default:
|
2019-11-22 17:02:12 +00:00
|
|
|
assertThrow(false, InvalidOpcode, "");
|
2016-11-15 13:01:11 +00:00
|
|
|
}
|
|
|
|
if (m_jumpType == JumpType::IntoFunction || m_jumpType == JumpType::OutOfFunction)
|
|
|
|
{
|
|
|
|
text += "\t//";
|
|
|
|
if (m_jumpType == JumpType::IntoFunction)
|
|
|
|
text += " in";
|
|
|
|
else
|
|
|
|
text += " out";
|
|
|
|
}
|
|
|
|
return text;
|
|
|
|
}
|
|
|
|
|
2019-12-11 16:31:36 +00:00
|
|
|
ostream& solidity::evmasm::operator<<(ostream& _out, AssemblyItem const& _item)
|
2015-04-24 15:35:16 +00:00
|
|
|
{
|
|
|
|
switch (_item.type())
|
|
|
|
{
|
|
|
|
case Operation:
|
2016-04-04 11:27:09 +00:00
|
|
|
_out << " " << instructionInfo(_item.instruction()).name;
|
2019-03-28 11:47:21 +00:00
|
|
|
if (_item.instruction() == Instruction::JUMP || _item.instruction() == Instruction::JUMPI)
|
2015-04-24 15:35:16 +00:00
|
|
|
_out << "\t" << _item.getJumpTypeAsString();
|
|
|
|
break;
|
|
|
|
case Push:
|
2017-08-22 12:55:01 +00:00
|
|
|
_out << " PUSH " << hex << _item.data() << dec;
|
2015-04-24 15:35:16 +00:00
|
|
|
break;
|
|
|
|
case PushString:
|
2017-08-22 12:55:01 +00:00
|
|
|
_out << " PushString" << hex << (unsigned)_item.data() << dec;
|
2015-04-24 15:35:16 +00:00
|
|
|
break;
|
|
|
|
case PushTag:
|
2016-11-11 10:41:50 +00:00
|
|
|
{
|
|
|
|
size_t subId = _item.splitForeignPushTag().first;
|
2020-06-02 13:10:14 +00:00
|
|
|
if (subId == numeric_limits<size_t>::max())
|
2016-11-11 10:41:50 +00:00
|
|
|
_out << " PushTag " << _item.splitForeignPushTag().second;
|
|
|
|
else
|
|
|
|
_out << " PushTag " << subId << ":" << _item.splitForeignPushTag().second;
|
2015-04-24 15:35:16 +00:00
|
|
|
break;
|
2016-11-11 10:41:50 +00:00
|
|
|
}
|
2015-04-24 15:35:16 +00:00
|
|
|
case Tag:
|
|
|
|
_out << " Tag " << _item.data();
|
|
|
|
break;
|
|
|
|
case PushData:
|
2020-06-02 13:10:14 +00:00
|
|
|
_out << " PushData " << hex << static_cast<unsigned>(_item.data()) << dec;
|
2015-04-24 15:35:16 +00:00
|
|
|
break;
|
|
|
|
case PushSub:
|
2020-06-02 13:10:14 +00:00
|
|
|
_out << " PushSub " << hex << static_cast<size_t>(_item.data()) << dec;
|
2015-04-24 15:35:16 +00:00
|
|
|
break;
|
|
|
|
case PushSubSize:
|
2020-06-02 13:10:14 +00:00
|
|
|
_out << " PushSubSize " << hex << static_cast<size_t>(_item.data()) << dec;
|
2015-04-24 15:35:16 +00:00
|
|
|
break;
|
|
|
|
case PushProgramSize:
|
|
|
|
_out << " PushProgramSize";
|
|
|
|
break;
|
2015-09-10 10:02:18 +00:00
|
|
|
case PushLibraryAddress:
|
2017-08-25 10:10:28 +00:00
|
|
|
{
|
2019-12-11 16:31:36 +00:00
|
|
|
string hash(util::h256((_item.data())).hex());
|
2017-08-25 10:10:28 +00:00
|
|
|
_out << " PushLibraryAddress " << hash.substr(0, 8) + "..." + hash.substr(hash.length() - 8);
|
2015-09-10 10:02:18 +00:00
|
|
|
break;
|
2017-08-25 10:10:28 +00:00
|
|
|
}
|
2017-11-14 11:58:04 +00:00
|
|
|
case PushDeployTimeAddress:
|
|
|
|
_out << " PushDeployTimeAddress";
|
|
|
|
break;
|
2020-03-10 13:30:04 +00:00
|
|
|
case PushImmutable:
|
|
|
|
_out << " PushImmutable";
|
|
|
|
break;
|
|
|
|
case AssignImmutable:
|
|
|
|
_out << " AssignImmutable";
|
|
|
|
break;
|
2015-04-24 15:35:16 +00:00
|
|
|
case UndefinedItem:
|
|
|
|
_out << " ???";
|
|
|
|
break;
|
|
|
|
default:
|
2019-11-22 17:02:12 +00:00
|
|
|
assertThrow(false, InvalidOpcode, "");
|
2015-04-24 15:35:16 +00:00
|
|
|
}
|
|
|
|
return _out;
|
|
|
|
}
|
2020-02-24 17:11:20 +00:00
|
|
|
|
|
|
|
std::string AssemblyItem::computeSourceMapping(
|
|
|
|
AssemblyItems const& _items,
|
|
|
|
map<string, unsigned> const& _sourceIndicesMap
|
|
|
|
)
|
|
|
|
{
|
|
|
|
string ret;
|
|
|
|
|
|
|
|
int prevStart = -1;
|
|
|
|
int prevLength = -1;
|
|
|
|
int prevSourceIndex = -1;
|
2020-06-02 13:10:14 +00:00
|
|
|
int prevModifierDepth = -1;
|
2020-02-24 17:11:20 +00:00
|
|
|
char prevJump = 0;
|
|
|
|
for (auto const& item: _items)
|
|
|
|
{
|
|
|
|
if (!ret.empty())
|
|
|
|
ret += ";";
|
|
|
|
|
|
|
|
SourceLocation const& location = item.location();
|
|
|
|
int length = location.start != -1 && location.end != -1 ? location.end - location.start : -1;
|
|
|
|
int sourceIndex =
|
|
|
|
location.source && _sourceIndicesMap.count(location.source->name()) ?
|
2020-06-02 13:10:14 +00:00
|
|
|
static_cast<int>(_sourceIndicesMap.at(location.source->name())) :
|
2020-02-24 17:11:20 +00:00
|
|
|
-1;
|
|
|
|
char jump = '-';
|
|
|
|
if (item.getJumpType() == evmasm::AssemblyItem::JumpType::IntoFunction)
|
|
|
|
jump = 'i';
|
|
|
|
else if (item.getJumpType() == evmasm::AssemblyItem::JumpType::OutOfFunction)
|
|
|
|
jump = 'o';
|
2020-06-02 13:10:14 +00:00
|
|
|
int modifierDepth = static_cast<int>(item.m_modifierDepth);
|
2020-02-24 17:11:20 +00:00
|
|
|
|
|
|
|
unsigned components = 5;
|
|
|
|
if (modifierDepth == prevModifierDepth)
|
|
|
|
{
|
|
|
|
components--;
|
|
|
|
if (jump == prevJump)
|
|
|
|
{
|
|
|
|
components--;
|
|
|
|
if (sourceIndex == prevSourceIndex)
|
|
|
|
{
|
|
|
|
components--;
|
|
|
|
if (length == prevLength)
|
|
|
|
{
|
|
|
|
components--;
|
|
|
|
if (location.start == prevStart)
|
|
|
|
components--;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (components-- > 0)
|
|
|
|
{
|
|
|
|
if (location.start != prevStart)
|
|
|
|
ret += to_string(location.start);
|
|
|
|
if (components-- > 0)
|
|
|
|
{
|
|
|
|
ret += ':';
|
|
|
|
if (length != prevLength)
|
|
|
|
ret += to_string(length);
|
|
|
|
if (components-- > 0)
|
|
|
|
{
|
|
|
|
ret += ':';
|
|
|
|
if (sourceIndex != prevSourceIndex)
|
|
|
|
ret += to_string(sourceIndex);
|
|
|
|
if (components-- > 0)
|
|
|
|
{
|
|
|
|
ret += ':';
|
|
|
|
if (jump != prevJump)
|
|
|
|
ret += jump;
|
|
|
|
if (components-- > 0)
|
|
|
|
{
|
|
|
|
ret += ':';
|
|
|
|
if (modifierDepth != prevModifierDepth)
|
|
|
|
ret += to_string(modifierDepth);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
prevStart = location.start;
|
|
|
|
prevLength = length;
|
|
|
|
prevSourceIndex = sourceIndex;
|
|
|
|
prevJump = jump;
|
|
|
|
prevModifierDepth = modifierDepth;
|
|
|
|
}
|
|
|
|
return ret;
|
|
|
|
}
|