1
0

Implement SPDEF id OUT ...

This commit is contained in:
otya128
2016-12-06 18:39:56 +09:00
parent 627e92126c
commit b2b9779eea
3 changed files with 53 additions and 0 deletions

View File

@@ -55,6 +55,11 @@ class IllegalFunctionCall : SmileBasicError
this.errnum = 4;
super("Illegal function call(" ~ func ~ ")");
}
this(string func, int arg)
{
this.errnum = 4;
super("Illegal function call(" ~ func ~ ":" ~ arg.to!string ~ ")");
}
}
class StackOverFlow : SmileBasicError
{