2019-01-24 09:48:01 +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/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <libdevcore/CommonData.h>
|
|
|
|
#include <libsolidity/ast/Types.h>
|
|
|
|
#include <liblangutil/Exceptions.h>
|
|
|
|
|
|
|
|
#include <iosfwd>
|
2019-05-15 15:25:35 +00:00
|
|
|
#include <iterator>
|
2019-02-01 05:29:34 +00:00
|
|
|
#include <numeric>
|
2019-01-24 09:48:01 +00:00
|
|
|
#include <stdexcept>
|
|
|
|
#include <string>
|
|
|
|
#include <vector>
|
|
|
|
#include <utility>
|
|
|
|
|
|
|
|
namespace dev
|
|
|
|
{
|
|
|
|
namespace solidity
|
|
|
|
{
|
|
|
|
namespace test
|
|
|
|
{
|
|
|
|
|
|
|
|
/**
|
2019-02-05 15:52:19 +00:00
|
|
|
* All soltest tokens.
|
2019-01-24 09:48:01 +00:00
|
|
|
*/
|
|
|
|
#define SOLT_TOKEN_LIST(T, K) \
|
|
|
|
T(Unknown, "unknown", 0) \
|
|
|
|
T(Invalid, "invalid", 0) \
|
|
|
|
T(EOS, "EOS", 0) \
|
|
|
|
T(Whitespace, "_", 0) \
|
|
|
|
/* punctuations */ \
|
|
|
|
T(LParen, "(", 0) \
|
|
|
|
T(RParen, ")", 0) \
|
|
|
|
T(LBrack, "[", 0) \
|
|
|
|
T(RBrack, "]", 0) \
|
|
|
|
T(LBrace, "{", 0) \
|
|
|
|
T(RBrace, "}", 0) \
|
|
|
|
T(Sub, "-", 0) \
|
|
|
|
T(Colon, ":", 0) \
|
|
|
|
T(Comma, ",", 0) \
|
|
|
|
T(Period, ".", 0) \
|
|
|
|
T(Arrow, "->", 0) \
|
|
|
|
T(Newline, "//", 0) \
|
|
|
|
/* Literals & identifier */ \
|
2019-02-01 05:29:34 +00:00
|
|
|
T(Comment, "#", 0) \
|
2019-01-24 09:48:01 +00:00
|
|
|
T(Number, "number", 0) \
|
2019-02-21 00:13:14 +00:00
|
|
|
T(HexNumber, "hex_number", 0) \
|
2019-05-06 08:08:10 +00:00
|
|
|
T(String, "string", 0) \
|
2019-01-24 09:48:01 +00:00
|
|
|
T(Identifier, "identifier", 0) \
|
|
|
|
/* type keywords */ \
|
|
|
|
K(Ether, "ether", 0) \
|
2019-02-25 17:10:09 +00:00
|
|
|
K(Hex, "hex", 0) \
|
2019-02-21 22:25:12 +00:00
|
|
|
K(Boolean, "boolean", 0) \
|
2019-01-24 09:48:01 +00:00
|
|
|
/* special keywords */ \
|
2019-02-28 13:16:16 +00:00
|
|
|
K(Left, "left", 0) \
|
|
|
|
K(Right, "right", 0) \
|
2019-01-24 09:48:01 +00:00
|
|
|
K(Failure, "FAILURE", 0) \
|
|
|
|
|
2019-02-05 15:52:19 +00:00
|
|
|
namespace soltest
|
|
|
|
{
|
|
|
|
enum class Token : unsigned int {
|
|
|
|
#define T(name, string, precedence) name,
|
|
|
|
SOLT_TOKEN_LIST(T, T)
|
|
|
|
NUM_TOKENS
|
|
|
|
#undef T
|
|
|
|
};
|
|
|
|
|
|
|
|
/// Prints a friendly string representation of \param _token.
|
|
|
|
inline std::string formatToken(Token _token)
|
|
|
|
{
|
|
|
|
switch (_token)
|
|
|
|
{
|
|
|
|
#define T(name, string, precedence) case Token::name: return string;
|
|
|
|
SOLT_TOKEN_LIST(T, T)
|
|
|
|
#undef T
|
|
|
|
default: // Token::NUM_TOKENS:
|
|
|
|
return "";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2019-01-24 09:48:01 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* The purpose of the ABI type is the storage of type information
|
|
|
|
* retrieved while parsing a test. This information is used
|
|
|
|
* for the conversion of human-readable function arguments and
|
|
|
|
* return values to `bytes` and vice-versa.
|
2019-02-02 13:22:46 +00:00
|
|
|
* Defaults to None, a 0-byte representation. 0-bytes
|
|
|
|
* can also be interpreted as Failure, which means
|
|
|
|
* either a REVERT or another EVM failure.
|
2019-01-24 09:48:01 +00:00
|
|
|
*/
|
|
|
|
struct ABIType
|
|
|
|
{
|
2019-02-21 00:50:41 +00:00
|
|
|
enum Type
|
|
|
|
{
|
2019-04-11 18:25:20 +00:00
|
|
|
None,
|
|
|
|
Failure,
|
|
|
|
Boolean,
|
2019-01-24 09:48:01 +00:00
|
|
|
UnsignedDec,
|
|
|
|
SignedDec,
|
2019-02-21 00:13:14 +00:00
|
|
|
Hex,
|
2019-05-06 08:08:10 +00:00
|
|
|
HexString,
|
|
|
|
String
|
2019-01-24 09:48:01 +00:00
|
|
|
};
|
2019-02-21 00:50:41 +00:00
|
|
|
enum Align
|
|
|
|
{
|
|
|
|
AlignLeft,
|
2019-02-28 13:16:16 +00:00
|
|
|
AlignRight,
|
|
|
|
AlignNone,
|
2019-02-21 00:50:41 +00:00
|
|
|
};
|
2019-02-02 13:22:46 +00:00
|
|
|
Type type = ABIType::None;
|
2019-02-21 00:13:14 +00:00
|
|
|
Align align = ABIType::AlignRight;
|
2019-02-02 13:22:46 +00:00
|
|
|
size_t size = 0;
|
2019-02-28 13:16:16 +00:00
|
|
|
bool alignDeclared = false;
|
2019-01-24 09:48:01 +00:00
|
|
|
};
|
|
|
|
|
2019-02-01 05:29:34 +00:00
|
|
|
/**
|
|
|
|
* Helper that can hold format information retrieved
|
2019-02-05 15:52:19 +00:00
|
|
|
* while scanning through a parameter list in soltest.
|
2019-02-01 05:29:34 +00:00
|
|
|
*/
|
|
|
|
struct FormatInfo
|
|
|
|
{
|
2019-02-06 11:10:48 +00:00
|
|
|
bool newline = false;
|
2019-02-01 05:29:34 +00:00
|
|
|
};
|
2019-01-24 09:48:01 +00:00
|
|
|
|
|
|
|
/**
|
2019-02-02 13:22:46 +00:00
|
|
|
* Parameter abstraction used for the encoding and decoding of
|
|
|
|
* function parameter and expectation / return value lists.
|
2019-02-01 05:29:34 +00:00
|
|
|
* A parameter list is usually a comma-separated list of literals.
|
|
|
|
* It should not be possible to call create a parameter holding
|
|
|
|
* an identifier, but if so, the ABI type would be invalid.
|
2019-01-24 09:48:01 +00:00
|
|
|
*/
|
2019-02-01 05:29:34 +00:00
|
|
|
struct Parameter
|
2019-01-24 09:48:01 +00:00
|
|
|
{
|
2019-02-02 13:22:46 +00:00
|
|
|
/// ABI encoded / decoded `bytes` of values.
|
|
|
|
/// These `bytes` are used to pass values to function calls
|
|
|
|
/// and also to store expected return vales. These are
|
|
|
|
/// compared to the actual result of a function call
|
|
|
|
/// and used for validating it.
|
2019-01-24 09:48:01 +00:00
|
|
|
bytes rawBytes;
|
2019-02-06 11:10:48 +00:00
|
|
|
/// Stores the raw string representation of this parameter.
|
|
|
|
/// Used to print the unformatted arguments of a function call.
|
|
|
|
std::string rawString;
|
2019-01-24 09:48:01 +00:00
|
|
|
/// Types that were used to encode `rawBytes`. Expectations
|
2019-02-01 05:29:34 +00:00
|
|
|
/// are usually comma separated literals. Their type is auto-
|
2019-01-24 09:48:01 +00:00
|
|
|
/// detected and retained in order to format them later on.
|
2019-02-01 05:29:34 +00:00
|
|
|
ABIType abiType;
|
|
|
|
/// Format info attached to the parameter. It handles newlines given
|
|
|
|
/// in the declaration of it.
|
|
|
|
FormatInfo format;
|
|
|
|
};
|
|
|
|
using ParameterList = std::vector<Parameter>;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Represents the expected result of a function call after it has been executed. This may be a single
|
|
|
|
* return value or a comma-separated list of return values. It also contains the detected input
|
|
|
|
* formats used to convert the values to `bytes` needed for the comparison with the actual result
|
|
|
|
* of a call. In addition to that, it also stores the expected transaction status.
|
|
|
|
* An optional comment can be assigned.
|
|
|
|
*/
|
|
|
|
struct FunctionCallExpectations
|
|
|
|
{
|
2019-02-05 15:52:19 +00:00
|
|
|
/// Representation of the comma-separated (or empty) list of expected result values
|
2019-02-02 13:22:46 +00:00
|
|
|
/// attached to the function call object. It is checked against the actual result of
|
|
|
|
/// a function call when used in test framework.
|
|
|
|
ParameterList result;
|
2019-01-24 09:48:01 +00:00
|
|
|
/// Expected status of the transaction. It can be either
|
|
|
|
/// a REVERT or a different EVM failure (e.g. out-of-gas).
|
2019-02-01 05:29:34 +00:00
|
|
|
bool failure = true;
|
2019-01-24 09:48:01 +00:00
|
|
|
/// A Comment that can be attached to the expectations,
|
|
|
|
/// that is retained and can be displayed.
|
|
|
|
std::string comment;
|
2019-02-02 13:22:46 +00:00
|
|
|
/// ABI encoded `bytes` of parsed expected return values. It is checked
|
|
|
|
/// against the actual result of a function call when used in test framework.
|
2019-02-01 05:29:34 +00:00
|
|
|
bytes rawBytes() const
|
|
|
|
{
|
|
|
|
bytes raw;
|
2019-02-02 13:22:46 +00:00
|
|
|
for (auto const& param: result)
|
2019-02-01 05:29:34 +00:00
|
|
|
raw += param.rawBytes;
|
|
|
|
return raw;
|
|
|
|
}
|
2019-01-24 09:48:01 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Represents the arguments passed to a function call. This can be a single
|
|
|
|
* argument or a comma-separated list of arguments. It also contains the detected input
|
|
|
|
* formats used to convert the arguments to `bytes` needed for the call.
|
|
|
|
* An optional comment can be assigned.
|
|
|
|
*/
|
|
|
|
struct FunctionCallArgs
|
|
|
|
{
|
|
|
|
/// Types that were used to encode `rawBytes`. Parameters
|
2019-02-01 05:29:34 +00:00
|
|
|
/// are usually comma separated literals. Their type is auto-
|
2019-01-24 09:48:01 +00:00
|
|
|
/// detected and retained in order to format them later on.
|
2019-02-01 05:29:34 +00:00
|
|
|
ParameterList parameters;
|
2019-01-24 09:48:01 +00:00
|
|
|
/// A Comment that can be attached to the expectations,
|
|
|
|
/// that is retained and can be displayed.
|
|
|
|
std::string comment;
|
2019-02-02 13:22:46 +00:00
|
|
|
/// ABI encoded `bytes` of parsed parameters. These `bytes`
|
2019-02-01 05:29:34 +00:00
|
|
|
/// passed to the function call.
|
|
|
|
bytes rawBytes() const
|
|
|
|
{
|
|
|
|
bytes raw;
|
|
|
|
for (auto const& param: parameters)
|
|
|
|
raw += param.rawBytes;
|
|
|
|
return raw;
|
|
|
|
}
|
2019-01-24 09:48:01 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Represents a function call read from an input stream. It contains the signature, the
|
|
|
|
* arguments, an optional ether value and an expected execution result.
|
|
|
|
*/
|
|
|
|
struct FunctionCall
|
|
|
|
{
|
|
|
|
/// Signature of the function call, e.g. `f(uint256, uint256)`.
|
|
|
|
std::string signature;
|
|
|
|
/// Optional `ether` value that can be send with the call.
|
|
|
|
u256 value;
|
|
|
|
/// Object that holds all function parameters in their `bytes`
|
|
|
|
/// representations given by the contract ABI.
|
|
|
|
FunctionCallArgs arguments;
|
|
|
|
/// Object that holds all function call expectation in
|
|
|
|
/// their `bytes` representations given by the contract ABI.
|
|
|
|
/// They are checked against the actual results and their
|
|
|
|
/// `bytes` representation, as well as the transaction status.
|
|
|
|
FunctionCallExpectations expectations;
|
2019-02-01 05:29:34 +00:00
|
|
|
/// single / multi-line mode will be detected as follows:
|
|
|
|
/// every newline (//) in source results in a function call
|
|
|
|
/// that has its display mode set to multi-mode. Function and
|
|
|
|
/// result parameter lists are an exception: a single parameter
|
|
|
|
/// stores a format information that contains a newline definition.
|
|
|
|
enum DisplayMode {
|
|
|
|
SingleLine,
|
|
|
|
MultiLine
|
|
|
|
};
|
|
|
|
DisplayMode displayMode = DisplayMode::SingleLine;
|
2019-05-15 10:01:14 +00:00
|
|
|
/// Marks this function call as the constructor.
|
|
|
|
bool isConstructor = false;
|
2019-01-24 09:48:01 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Class that is able to parse an additional and well-formed comment section in a Solidity
|
|
|
|
* source file used by the file-based unit test environment. For now, it parses function
|
|
|
|
* calls and their expected result after the call was made.
|
|
|
|
*
|
|
|
|
* - Function calls defined in blocks:
|
|
|
|
* // f(uint256, uint256): 1, 1 # Signature and comma-separated list of arguments #
|
|
|
|
* // -> 1, 1 # Expected result value #
|
|
|
|
* // g(), 2 ether # (Optional) Ether to be send with the call #
|
|
|
|
* // -> 2, 3
|
|
|
|
* // h(uint256), 1 ether: 42
|
|
|
|
* // -> FAILURE # If REVERT or other EVM failure was detected #
|
|
|
|
* ...
|
|
|
|
*/
|
|
|
|
class TestFileParser
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
/// Constructor that takes an input stream \param _stream to operate on
|
|
|
|
/// and creates the internal scanner.
|
|
|
|
TestFileParser(std::istream& _stream): m_scanner(_stream) {}
|
|
|
|
|
|
|
|
/// Parses function calls blockwise and returns a list of function calls found.
|
|
|
|
/// Throws an exception if a function call cannot be parsed because of its
|
|
|
|
/// incorrect structure, an invalid or unsupported encoding
|
|
|
|
/// of its arguments or expected results.
|
|
|
|
std::vector<FunctionCall> parseFunctionCalls();
|
|
|
|
|
|
|
|
private:
|
2019-02-05 15:52:19 +00:00
|
|
|
using Token = soltest::Token;
|
2019-01-24 09:48:01 +00:00
|
|
|
/**
|
|
|
|
* Token scanner that is used internally to abstract away character traversal.
|
|
|
|
*/
|
|
|
|
class Scanner
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
/// Constructor that takes an input stream \param _stream to operate on.
|
2019-02-01 05:29:34 +00:00
|
|
|
/// It reads all lines into one single line, keeping the newlines.
|
2019-01-24 09:48:01 +00:00
|
|
|
Scanner(std::istream& _stream) { readStream(_stream); }
|
|
|
|
|
|
|
|
/// Reads input stream into a single line and resets the current iterator.
|
|
|
|
void readStream(std::istream& _stream);
|
|
|
|
|
|
|
|
/// Reads character stream and creates token.
|
|
|
|
void scanNextToken();
|
|
|
|
|
2019-02-05 15:52:19 +00:00
|
|
|
soltest::Token currentToken() { return m_currentToken.first; }
|
2019-01-24 09:48:01 +00:00
|
|
|
std::string currentLiteral() { return m_currentToken.second; }
|
|
|
|
|
|
|
|
std::string scanComment();
|
|
|
|
std::string scanIdentifierOrKeyword();
|
2019-02-21 00:13:14 +00:00
|
|
|
std::string scanDecimalNumber();
|
|
|
|
std::string scanHexNumber();
|
2019-05-06 08:08:10 +00:00
|
|
|
std::string scanString();
|
2019-01-24 09:48:01 +00:00
|
|
|
|
|
|
|
private:
|
2019-02-05 15:52:19 +00:00
|
|
|
using TokenDesc = std::pair<Token, std::string>;
|
2019-01-24 09:48:01 +00:00
|
|
|
|
|
|
|
/// Advances current position in the input stream.
|
2019-05-15 15:25:35 +00:00
|
|
|
void advance()
|
|
|
|
{
|
|
|
|
solAssert(m_char != m_line.end(), "Cannot advance beyond end.");
|
|
|
|
++m_char;
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Returns the current character or '\0' if at end of input.
|
|
|
|
char current() const noexcept
|
|
|
|
{
|
|
|
|
if (m_char == m_line.end())
|
|
|
|
return '\0';
|
|
|
|
|
|
|
|
return *m_char;
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Retrieves the next character ('\0' if that would be at (or beyond) the end of input)
|
|
|
|
/// without advancing the input stream iterator.
|
|
|
|
char peek() const noexcept;
|
|
|
|
|
2019-01-24 09:48:01 +00:00
|
|
|
/// Returns true if the end of a line is reached, false otherwise.
|
|
|
|
bool isEndOfLine() const { return m_char == m_line.end(); }
|
|
|
|
|
|
|
|
std::string m_line;
|
2019-05-15 15:25:35 +00:00
|
|
|
std::string::const_iterator m_char;
|
2019-01-24 09:48:01 +00:00
|
|
|
|
|
|
|
std::string m_currentLiteral;
|
|
|
|
|
|
|
|
TokenDesc m_currentToken;
|
|
|
|
};
|
|
|
|
|
2019-02-05 15:52:19 +00:00
|
|
|
bool accept(soltest::Token _token, bool const _expect = false);
|
|
|
|
bool expect(soltest::Token _token, bool const _advance = true);
|
2019-01-24 09:48:01 +00:00
|
|
|
|
|
|
|
/// Parses a function call signature in the form of f(uint256, ...).
|
|
|
|
std::string parseFunctionSignature();
|
|
|
|
|
|
|
|
/// Parses the optional ether value that can be passed alongside the
|
|
|
|
/// function call arguments. Throws an InvalidEtherValueEncoding exception
|
|
|
|
/// if given value cannot be converted to `u256`.
|
|
|
|
u256 parseFunctionCallValue();
|
|
|
|
|
|
|
|
/// Parses a comma-separated list of arguments passed with a function call.
|
|
|
|
/// Does not check for a potential mismatch between the signature and the number
|
|
|
|
/// or types of arguments.
|
|
|
|
FunctionCallArgs parseFunctionCallArguments();
|
|
|
|
|
|
|
|
/// Parses the expected result of a function call execution.
|
|
|
|
FunctionCallExpectations parseFunctionCallExpectations();
|
|
|
|
|
2019-02-01 05:29:34 +00:00
|
|
|
/// Parses the next parameter in a comma separated list.
|
|
|
|
/// Takes a newly parsed, and type-annotated `bytes` argument,
|
|
|
|
/// appends it to the internal `bytes` buffer of the parameter. It can also
|
|
|
|
/// store newlines found in the source, that are needed to
|
|
|
|
/// format input and output of the interactive update.
|
|
|
|
Parameter parseParameter();
|
|
|
|
|
2019-01-24 09:48:01 +00:00
|
|
|
/// Parses and converts the current literal to its byte representation and
|
2019-02-06 11:10:48 +00:00
|
|
|
/// preserves the chosen ABI type, as well as a raw, unformatted string representation
|
|
|
|
/// of this literal.
|
|
|
|
/// Based on the type information retrieved, the driver of this parser may format arguments,
|
|
|
|
/// expectations and results. Supported types:
|
2019-02-01 05:29:34 +00:00
|
|
|
/// - unsigned and signed decimal number literals.
|
|
|
|
/// Returns invalid ABI type for empty literal. This is needed in order
|
|
|
|
/// to detect empty expectations. Throws a ParserError if data is encoded incorrectly or
|
2019-01-24 09:48:01 +00:00
|
|
|
/// if data type is not supported.
|
2019-02-06 11:10:48 +00:00
|
|
|
std::tuple<bytes, ABIType, std::string> parseABITypeLiteral();
|
2019-01-24 09:48:01 +00:00
|
|
|
|
2019-02-05 15:52:19 +00:00
|
|
|
/// Recursively parses an identifier or a tuple definition that contains identifiers
|
|
|
|
/// and / or parentheses like `((uint, uint), (uint, (uint, uint)), uint)`.
|
|
|
|
std::string parseIdentifierOrTuple();
|
|
|
|
|
2019-02-21 22:25:12 +00:00
|
|
|
/// Parses a boolean literal.
|
|
|
|
std::string parseBoolean();
|
|
|
|
|
2019-02-05 15:52:19 +00:00
|
|
|
/// Parses a comment that is defined like this:
|
|
|
|
/// # A nice comment. #
|
2019-02-01 05:29:34 +00:00
|
|
|
std::string parseComment();
|
|
|
|
|
2019-02-21 00:13:14 +00:00
|
|
|
/// Parses the current decimal number literal.
|
|
|
|
std::string parseDecimalNumber();
|
|
|
|
|
|
|
|
/// Parses the current hex number literal.
|
|
|
|
std::string parseHexNumber();
|
2019-01-24 09:48:01 +00:00
|
|
|
|
2019-05-06 08:08:10 +00:00
|
|
|
/// Parses the current string literal.
|
|
|
|
std::string parseString();
|
|
|
|
|
2019-02-28 13:16:16 +00:00
|
|
|
/// Tries to convert \param _literal to an unpadded `bytes`
|
|
|
|
/// representation of the boolean number literal. Throws if conversion fails.
|
|
|
|
bytes convertBoolean(std::string const& _literal);
|
2019-02-21 22:25:12 +00:00
|
|
|
|
2019-02-28 13:16:16 +00:00
|
|
|
/// Tries to convert \param _literal to an unpadded `bytes`
|
|
|
|
/// representation of the decimal number literal. Throws if conversion fails.
|
|
|
|
bytes convertNumber(std::string const& _literal);
|
2019-01-24 09:48:01 +00:00
|
|
|
|
2019-02-28 13:16:16 +00:00
|
|
|
/// Tries to convert \param _literal to an unpadded `bytes`
|
2019-02-21 00:13:14 +00:00
|
|
|
/// representation of the hex literal. Throws if conversion fails.
|
|
|
|
bytes convertHexNumber(std::string const& _literal);
|
|
|
|
|
2019-05-06 08:08:10 +00:00
|
|
|
/// Tries to convert \param _literal to an unpadded `bytes`
|
|
|
|
/// representation of the string literal. Throws if conversion fails.
|
|
|
|
bytes convertString(std::string const& _literal);
|
2019-02-25 17:10:09 +00:00
|
|
|
|
2019-01-24 09:48:01 +00:00
|
|
|
/// A scanner instance
|
|
|
|
Scanner m_scanner;
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|