Fix missing semicolon

This commit is contained in:
Gunnlaugur Þór Briem 2013-09-24 18:13:34 +00:00
parent fae0f14f4a
commit 9b38b16701

View File

@ -311,7 +311,7 @@ function OutputStream(options) {
}
}
}
tokenName = tokenChars.join('')
tokenName = tokenChars.join('');
// Fixes offsets for quoted keys of object literals
remainder = token.endpos - token.pos - tokenName.length;