removed comment

This commit is contained in:
Arthur Ozga 2015-06-18 14:44:01 -07:00
parent 4c1002e96b
commit 10c8b6a089

View file

@ -1082,11 +1082,6 @@ namespace ts {
}
return token !== SyntaxKind.AsteriskToken && token !== SyntaxKind.OpenBraceToken && canFollowModifier();
}
// if (token === SyntaxKind.AbstractKeyword) {
// nextToken();
// // 'abstract' can precede class declarations and member function declarations.
// return token === SyntaxKind.ClassKeyword || token === SyntaxKind.Identifier;
// }
if (token === SyntaxKind.DefaultKeyword) {
return nextTokenIsClassOrFunction();
}