- Claned up
This commit is contained in:
Tristan B. Velloza Kildaire 2024-04-20 23:57:19 +02:00
parent 52f7e3a5ab
commit 1d7e48e094
1 changed files with 1 additions and 3 deletions

View File

@ -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;
}