File tree 1 file changed +4
-5
lines changed 1 file changed +4
-5
lines changed Original file line number Diff line number Diff line change @@ -187,9 +187,9 @@ function printCharCode(code) {
187
187
/**
188
188
* Gets the next token from the source starting at the given position.
189
189
*
190
- * This skips over whitespace and comments until it finds the next lexable
191
- * token, then lexes punctuators immediately or calls the appropriate helper
192
- * function for more complicated tokens.
190
+ * This skips over whitespace until it finds the next lexable token, then lexes
191
+ * punctuators immediately or calls the appropriate helper function for more
192
+ * complicated tokens.
193
193
*/
194
194
function readToken ( lexer : Lexer < * > , prev : Token ) : Token {
195
195
const source = lexer . source ;
@@ -362,8 +362,7 @@ function unexpectedCharacterMessage(code) {
362
362
363
363
/**
364
364
* Reads from body starting at startPosition until it finds a non-whitespace
365
- * or commented character, then returns the position of that character for
366
- * lexing.
365
+ * character, then returns the position of that character for lexing.
367
366
*/
368
367
function positionAfterWhitespace(
369
368
body: string,
You can’t perform that action at this time.
0 commit comments