update with OS X specific instructions on installation

This commit is contained in:
RJ Catalano 2015-12-17 10:32:36 -06:00
commit 2bd573ad6f

View File

@ -1051,7 +1051,7 @@ ASTPointer<Expression> Parser::parsePrimaryExpression()
if (m_scanner->currentToken() != Token::Comma && m_scanner->currentToken() != oppositeToken) if (m_scanner->currentToken() != Token::Comma && m_scanner->currentToken() != oppositeToken)
components.push_back(parseExpression()); components.push_back(parseExpression());
else if (isArray) else if (isArray)
parserError(std::string("Expected value in array cell after")); parserError("Expected expression (inline array elements cannot be omitted).");
else else
components.push_back(ASTPointer<Expression>()); components.push_back(ASTPointer<Expression>());
if (m_scanner->currentToken() == oppositeToken) if (m_scanner->currentToken() == oppositeToken)