Function tokenize
tokenize source into array of tokens (excluding EOF)
Token[] tokenize(
string code,
string[] _singleLineCommentPrefixes = ["//"],
bool skipSpace = false,
bool skipEols = false,
bool skipComments = false
);