Closed
Description
Typescript:
private isIdentifierCharacter(char: string): boolean {
var charCode = char.charCodeAt(0);
return
((charCode >= 'a'.charCodeAt(0) && charCode <= 'z'.charCodeAt(0)) ||
charCode == '_'.charCodeAt(0));
}
Generated js:
FormulaScanner.prototype.isIdentifierCharacter = function (char) {
var charCode = char.charCodeAt(0);
return;
((charCode >= 'a'.charCodeAt(0) && charCode <= 'z'.charCodeAt(0)) || charCode == '_'.charCodeAt(0));
};
Notice the ;
after return
in the generated code.