Removal of no-longer applicable comments refering to SM code

This commit is contained in:
igor%mir2.org 2004-07-05 15:07:25 +00:00
Родитель 22e375a6d4
Коммит 3c5cccc01d
1 изменённых файлов: 1 добавлений и 6 удалений

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

@ -1308,12 +1308,7 @@ public class Parser
mustMatchToken(Token.NAME, "msg.no.name.after.dot");
String s = ts.getString();
decompiler.addName(s);
pn = nf.createBinary(Token.DOT, pn,
nf.createName(ts.getString()));
/* pn = nf.createBinary(Token.DOT, pn, memberExpr())
* is the version in Brendan's IR C version. Not in ECMA...
* does it reflect the 'new' operator syntax he mentioned?
*/
pn = nf.createBinary(Token.DOT, pn, nf.createName(s));
} else if (tt == Token.LB) {
decompiler.addToken(Token.LB);
pn = nf.createBinary(Token.LB, pn, expr(false));