Simplify emitter.

This commit is contained in:
Cyrus Najmabadi 2014-11-30 21:18:31 -08:00
parent e80d772579
commit aed8404b7d

View File

@ -2411,9 +2411,6 @@ module ts {
}
function emitPostfixUnaryExpression(node: PostfixUnaryExpression) {
if (node.operator >= SyntaxKind.Identifier) {
write(" ");
}
emit(node.operand);
write(tokenToString(node.operator));
}