expected. insert a semicolon at the end

Rant: Images of code suck, suck bad.

Anyways, when defining a variable type type in UnityScript(javascript) you need to seperate the explicit type and variable name with a semi-colon.

You have:

private var step boolean = true;

when the correct format is:

private var step: boolean = true;

You did it correct else where in the code, like the float below that declaration.