Do not allow literal pushes in Julia

This commit is contained in:
Alex Beregszaszi 2017-05-02 09:24:35 +01:00
parent d61f9c4d4e
commit f1f209db40

View File

@ -128,6 +128,8 @@ assembly::Statement Parser::parseStatement()
}
}
default:
if (m_julia)
fatalParserError("Call or assignment expected.");
break;
}
return statement;