1
0

ダイレクトモードを実装

This commit is contained in:
otya128
2016-02-22 23:08:54 +09:00
parent 76aea0c4e6
commit 5f0078a8f9
4 changed files with 73 additions and 6 deletions

View File

@@ -104,4 +104,14 @@ class SubscriptOutOfRange : SmileBasicError
super("Subscript out of range");
}
}
class CantUseFromDirectMode : SmileBasicError
{
this()
{
this.errnum = 43;
this.errprg = 0;//always 0
this.errline = 0;
super("Can't use from direct mode");
}
}