IMplement STOP
This commit is contained in:
@@ -53,6 +53,7 @@ enum NodeType
|
||||
Linput,
|
||||
CallSprite,
|
||||
CallBG,
|
||||
StopStatement,
|
||||
}
|
||||
abstract class Node
|
||||
{
|
||||
@@ -715,3 +716,11 @@ class CallBG : Statement
|
||||
this.type = NodeType.CallBG;
|
||||
}
|
||||
}
|
||||
class StopStatement : Statement
|
||||
{
|
||||
this(SourceLocation loc)
|
||||
{
|
||||
super.location = loc;
|
||||
this.type = NodeType.StopStatement;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user