mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
parent
d3f410d8a8
commit
092e5829d8
@ -757,6 +757,11 @@ bool Why3Translator::visit(Literal const& _literal)
|
||||
return false;
|
||||
}
|
||||
|
||||
bool Why3Translator::visit(PragmaDirective const&)
|
||||
{
|
||||
return false;
|
||||
}
|
||||
|
||||
bool Why3Translator::isStateVariable(VariableDeclaration const* _var) const
|
||||
{
|
||||
return contains(m_currentContract.stateVariables, _var);
|
||||
|
@ -94,6 +94,7 @@ private:
|
||||
virtual bool visit(IndexAccess const& _node) override;
|
||||
virtual bool visit(Identifier const& _node) override;
|
||||
virtual bool visit(Literal const& _node) override;
|
||||
virtual bool visit(PragmaDirective const& _node) override;
|
||||
|
||||
virtual bool visitNode(ASTNode const& _node) override
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user