diff options
author | Marvin Borner | 2019-08-15 00:25:25 +0200 |
---|---|---|
committer | Marvin Borner | 2019-08-15 00:25:25 +0200 |
commit | 0627e0ac4bd237f0d7d256f1cfe863440b318f55 (patch) | |
tree | e289bc92166ccd40a3da66238208687731a2bce5 /src/runMain/kotlin/Lexical.kt | |
parent | 9ebc0391be2dcf54608518361eba78708bf6d26f (diff) |
Added documentation
Diffstat (limited to 'src/runMain/kotlin/Lexical.kt')
-rw-r--r-- | src/runMain/kotlin/Lexical.kt | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/runMain/kotlin/Lexical.kt b/src/runMain/kotlin/Lexical.kt index 459927c..2910bca 100644 --- a/src/runMain/kotlin/Lexical.kt +++ b/src/runMain/kotlin/Lexical.kt @@ -1,6 +1,9 @@ import exceptions.* class Lexical { + /** + * Analyzes the given [source] and returns the tokens divided into an array of statements + */ fun analyze(source: String): MutableList<MutableList<Pair<String, TokenType>>> { var buffer = "" var skipStatementEnd = false |