1
0

Add Undefined Label Error

This commit is contained in:
otya128
2016-12-04 16:30:31 +09:00
parent 46fb83483b
commit bd352d81f3
2 changed files with 24 additions and 2 deletions

View File

@@ -96,6 +96,18 @@ class OutOfDATA : SmileBasicError
super("Out of DATA");
}
}
class UndefinedLabel : SmileBasicError
{
this()
{
this.errnum = 14;
super("Undefined label");
}
this(wstring label)
{
this();
}
}
class UndefinedVariable : SmileBasicError
{
this()