diff options
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 |