Merge pull request #19 from joyceerhl/parserTypo

Set this.indent = [0] when it's undefined
This commit is contained in:
Rob DeLine 2019-07-09 10:40:05 -07:00 коммит произвёл GitHub
Родитель 253eab62f6 0e913ea7b0
Коммит ecda38cf14
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -66,7 +66,7 @@ imagnumber ({floatnumber}|{intpart})[jJ]
<INITIAL,INLINE><<EOF>> %{
// if the last statement in indented, need to force a dedent before EOF
if (this.indents == undefined) this.indents == [0];
if (this.indents == undefined) this.indents = [0];
if (this.indents.length > 1) {
this.begin( 'DEDENTS' );
this.unput(' '); // make sure EOF is not triggered