Fix node end line-numbering bug reported by Igor Bukanov on n.p.m.jseng.

This commit is contained in:
brendan%mozilla.org 2004-08-22 18:51:07 +00:00
Родитель 525fcdba3e
Коммит d9c605bed1
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -2771,7 +2771,7 @@ MemberExpr(JSContext *cx, JSTokenStream *ts, JSTreeContext *tc,
JSMSG_TOO_MANY_FUN_ARGS);
return NULL;
}
pn2->pn_pos.end = PN_LAST(pn2)->pn_pos.end;
pn2->pn_pos.end = CURRENT_TOKEN(ts).pos.end;
} else {
js_UngetToken(ts);
return pn;