Variablename must not contains "space"-chars

The following "syntax error" is not catched by TM Scripter.

See the following example:

uses
Classes, Graphics, Controls, Forms, Dialogs, Unit2;

var
i j:integer; // <<<<---- the comma is missing between the variables i and j.
MainForm: TForm2;
begin
MainForm := TForm2.Create(Application);
MainForm.Show;
end;

or in general, It should not possible to have variables-names which contains a space-char.

There is no space in variable name, it's the declaration of two different variables, i and j. TMS Scripter accepts that syntax and change it can break compatibility with the existing scripts.

This feature will not be implemented.