LiteralValueFloat

- Overriden `toString()` with new `produceToStrEnclose()`
This commit is contained in:
Tristan B. Velloza Kildaire 2023-02-01 17:13:23 +02:00
parent b7c8724245
commit 085adc3536
1 changed files with 5 additions and 0 deletions

View File

@ -168,6 +168,11 @@ public final class LiteralValueFloat : Value
addInfo = "Data: "~to!(string)(data)~", Type: "~to!(string)(type);
}
public override string toString()
{
return produceToStrEnclose("Data: "~to!(string)(data)~", Type: "~to!(string)(type));
}
}
/* FIXME: Implement this */