Removing unused variable.

This commit is contained in:
Anders Hejlsberg 2014-08-08 17:03:51 -07:00
parent be56670ddf
commit 5318bab517

View file

@ -384,7 +384,6 @@ module ts {
var nextChar = text.charCodeAt(pos + 1);
if (nextChar === CharacterCodes.slash || nextChar === CharacterCodes.asterisk) {
var startPos = pos;
var comment: string = undefined;
pos += 2;
if (nextChar === CharacterCodes.slash) {
while (pos < text.length) {