mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
Add flag for JULIA parsing
This commit is contained in:
parent
122dc65b36
commit
b48bc81d40
@ -37,7 +37,7 @@ namespace assembly
|
||||
class Parser: public ParserBase
|
||||
{
|
||||
public:
|
||||
Parser(ErrorList& _errors): ParserBase(_errors) {}
|
||||
explicit Parser(ErrorList& _errors, bool _julia = false): ParserBase(_errors), m_julia(_julia) {}
|
||||
|
||||
/// Parses an inline assembly block starting with `{` and ending with `}`.
|
||||
/// @returns an empty shared pointer on error.
|
||||
@ -70,6 +70,9 @@ protected:
|
||||
FunctionDefinition parseFunctionDefinition();
|
||||
Statement parseFunctionalInstruction(Statement&& _instruction);
|
||||
std::string expectAsmIdentifier();
|
||||
|
||||
private:
|
||||
bool m_julia = false;
|
||||
};
|
||||
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user