1
0

とりあえず関数呼び出し

This commit is contained in:
otya128
2015-06-13 20:21:11 +09:00
parent 4b530f492e
commit dec42422b5
6 changed files with 160 additions and 15 deletions

View File

@@ -27,6 +27,14 @@ class SyntaxError : SmileBasicError
super("Syntax error");
}
}
class IllegalFunctionCall : SmileBasicError
{
this()
{
this.errnum = 4;
super("Illegal function call");
}
}
class TypeMismatch : SmileBasicError
{
this()