1
0

Implement CALL(x:FUNC)

This commit is contained in:
otya128
2016-12-29 15:37:28 +09:00
parent 692c7907e9
commit 5c6ec3e9e0
3 changed files with 84 additions and 16 deletions

View File

@@ -149,6 +149,18 @@ class UndefinedVariable : SmileBasicError
super("Undefined variable");
}
}
class UndefinedFunction : SmileBasicError
{
this()
{
this.errnum = 16;
super("Undefined function");
}
this(wstring name)
{
this();
}
}
class DuplicateVariable : SmileBasicError
{
this()