1
0

ASSERT関数を実装,関数定義の後のコードが実行されない問題を修正

This commit is contained in:
otya128
2015-07-12 15:08:10 +09:00
parent 2139875751
commit 6741600c33
6 changed files with 56 additions and 5 deletions

View File

@@ -90,6 +90,10 @@ struct Value
{
return this.type == ValueType.Integer ? this.integerValue : (this.type == ValueType.Double ? this.doubleValue : 0);
}
wstring castString()
{
return this.type == ValueType.String ? this.stringValue : "";
}
string toString()
{
import std.conv;