Allow comma after Begin and End script instruction (Fixes #4451)

pull/456/head
Marc Zinnschlag 6 years ago
parent 3af003d36b
commit 816a1733dc

@ -119,6 +119,11 @@ namespace Compiler
return false;
}
}
else if (code==Scanner::S_comma && (mState==NameState || mState==EndNameState))
{
// ignoring comma (for now)
return true;
}
return Parser::parseSpecial (code, loc, scanner);
}

Loading…
Cancel
Save