Lua : add semicolon to var declarations
Lua will try to interpret expressions across newlines. Adding a
semicolon will prevent this.
Note that I can't just do this everywhere, in some cases, we need to allow
the expressions to be combined with other expressions via operators.
Local declarations are safe, since they are statements and not
expressions.