From 38aad3dcda01fc5ed82556dbfdf4cfc30ff479d9 Mon Sep 17 00:00:00 2001 From: Marvin Borner Date: Wed, 14 Aug 2019 18:28:10 +0200 Subject: Began syntactical analysis --- src/Lexical.kt | 16 +--------------- 1 file changed, 1 insertion(+), 15 deletions(-) (limited to 'src/Lexical.kt') diff --git a/src/Lexical.kt b/src/Lexical.kt index 1655805..df60a8e 100644 --- a/src/Lexical.kt +++ b/src/Lexical.kt @@ -13,6 +13,7 @@ class Lexical { if (buffer == "\"") stringMode = true buffer = "" } + if (tokenType == TokenType.Empty) buffer = "" } return tokens } @@ -65,18 +66,3 @@ class Lexical { private val brackets = listOf("(", ")", "[", "]", "{", "}") // TODO: Use brackets for functions private val classifier = listOf("\"") // TODO: Add char mode e.g 'a' } - -enum class TokenType { - Keyword, - Assignment, - Arithmetic, - Comparison, - Logical, - Identifier, - Constant, - Punctuation, - Bracket, - Classifier, - Empty, - Skip -} \ No newline at end of file -- cgit v1.2.3