1
0

Implement GLOAD

This commit is contained in:
otya128
2016-12-14 17:50:06 +09:00
parent 6c941d49bc
commit 31171d1cb7
3 changed files with 137 additions and 5 deletions

View File

@@ -164,6 +164,16 @@ class SubscriptOutOfRange : SmileBasicError
this.errnum = 31;
super("Subscript out of range");
}
this(string func)
{
this.errnum = 31;
super("Subscript out of range(" ~ func ~ ")");
}
this(string func, int arg)
{
this.errnum = 31;
super("Subscript out of range(" ~ func ~ ":" ~ arg.to!string ~ ")");
}
}
class StringTooLong : SmileBasicError
{