Bit of cleanup

This commit is contained in:
nub31
2025-07-24 18:57:49 +02:00
parent 5e23da61f0
commit 74b2a299b2
2 changed files with 5 additions and 18 deletions

View File

@@ -6,18 +6,6 @@ internal class QBEWriter
{
private readonly StringBuilder _builder = new();
public void StartFunction(string signature)
{
_builder.Append(signature);
_builder.AppendLine(" {");
_builder.AppendLine("@start");
}
public void EndFunction()
{
_builder.AppendLine("}");
}
public void Indented(string value)
{
_builder.Append('\t');