From 326598a8e1eb1aee0b9e7a81d5977be09e55dd93 Mon Sep 17 00:00:00 2001 From: berkansivri Date: Fri, 10 Jan 2020 17:12:19 +0300 Subject: [PATCH] remove tiny decleration --- the-super-tiny-compiler.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/the-super-tiny-compiler.js b/the-super-tiny-compiler.js index 42437ca..4744558 100755 --- a/the-super-tiny-compiler.js +++ b/the-super-tiny-compiler.js @@ -495,7 +495,7 @@ function tokenizer(input) { } // Skip the closing double quote. - char = input[++current]; + ++current; // And add our `string` token to the `tokens` array. tokens.push({ type: 'string', value });