From 1d7e48e094a8089ff43c8ef141b2ba552ac142db Mon Sep 17 00:00:00 2001 From: "Tristan B. Velloza Kildaire" Date: Sat, 20 Apr 2024 23:57:19 +0200 Subject: [PATCH] Comments - Claned up --- source/tlang/compiler/symbols/comments.d | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/source/tlang/compiler/symbols/comments.d b/source/tlang/compiler/symbols/comments.d index 36d693de..b3e2133f 100644 --- a/source/tlang/compiler/symbols/comments.d +++ b/source/tlang/compiler/symbols/comments.d @@ -7,6 +7,7 @@ import std.array : join; import tlang.misc.logging; import std.string : format; +import tlang.compiler.lexer.core.tokens : Token; /** * The type of docstring @@ -524,8 +525,6 @@ unittest assert("Hello there" == comment.bdy); } -import tlang.compiler.lexer.core.tokens : Token; - /** * Represents a comment * which can be attached @@ -537,7 +536,6 @@ public final class Comment private this(CommentParts content) { - // TODO: Parse the comment into text but annotated section this.content = content; }