зеркало из https://github.com/mozilla/pjs.git
Fix expression statement (SEMICOLON) nodes to start and end at the same source index as their expression child.
This commit is contained in:
Родитель
93eaa68026
Коммит
0cb5241ec3
|
@ -547,9 +547,10 @@ function Statement(t, x) {
|
|||
return n;
|
||||
}
|
||||
|
||||
t.unget();
|
||||
n = new Node(t, SEMICOLON);
|
||||
t.unget();
|
||||
n.expression = Expression(t, x);
|
||||
n.end = n.expression.end;
|
||||
break;
|
||||
}
|
||||
|
||||
|
|
Загрузка…
Ссылка в новой задаче