Support 'new' inline var syntax with the pas2js compiler

Hi,

It would be nice for the pas2js to support the new inline var syntax.

e.g.
begin
var max := 100; // example of simple variable
for var i := 1 to max do // example in loop
begin
end;
for var obj in list do // example with enumerable
begin
end;
end;