From ead0478f268f486ea8e9eccac729c93cf4a94ee1 Mon Sep 17 00:00:00 2001 From: chriseth Date: Fri, 16 Oct 2015 14:34:43 +0200 Subject: Fix errors when struct array type is used on its own. --- libsolidity/ExpressionCompiler.cpp | 10 ++++++++++ 1 file changed, 10 insertions(+) (limited to 'libsolidity/ExpressionCompiler.cpp') diff --git a/libsolidity/ExpressionCompiler.cpp b/libsolidity/ExpressionCompiler.cpp index fde88a00..112521f9 100644 --- a/libsolidity/ExpressionCompiler.cpp +++ b/libsolidity/ExpressionCompiler.cpp @@ -950,6 +950,12 @@ bool ExpressionCompiler::visit(IndexAccess const& _indexAccess) break; } } + else if (baseType.category() == Type::Category::TypeType) + { + solAssert(baseType.sizeOnStack() == 0, ""); + solAssert(_indexAccess.annotation().type->sizeOnStack() == 0, ""); + // no-op - this seems to be a lone array type (`structType[];`) + } else solAssert(false, "Index access only allowed for mappings or arrays."); @@ -1003,6 +1009,10 @@ void ExpressionCompiler::endVisit(Identifier const& _identifier) { // no-op } + else if (dynamic_cast(declaration)) + { + // no-op + } else { BOOST_THROW_EXCEPTION(InternalCompilerError() << errinfo_comment("Identifier type not expected in expression context.")); -- cgit v1.2.3