Skip to content

Commit 191f8f6

Browse files
committed
simlify comments
1 parent e926257 commit 191f8f6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/tokenizer.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -1407,7 +1407,7 @@ export class Tokenizer extends DiagnosticEmitter {
14071407
while (pos < end) {
14081408
let c = text.charCodeAt(pos);
14091409
if (isDecimal(c)) {
1410-
// value = value * 10 + c - CharCode._0
1410+
// value * 10 + c - CharCode._0
14111411
nextValue = i64_add(
14121412
i64_mul(value, i64_10),
14131413
i64_new(c - CharCode._0)
@@ -1472,7 +1472,7 @@ export class Tokenizer extends DiagnosticEmitter {
14721472
while (pos < end) {
14731473
let c = text.charCodeAt(pos);
14741474
if (isOctal(c)) {
1475-
// value = (value << 3) + c - CharCode._0;
1475+
// (value << 3) + c - CharCode._0
14761476
nextValue = i64_add(
14771477
i64_shl(value, i64_3),
14781478
i64_new(c - CharCode._0)

0 commit comments

Comments
 (0)