1
0

Fix local restore

This commit is contained in:
otya128
2016-12-23 21:16:59 +09:00
parent 0cda0ee095
commit f0b598e35e
2 changed files with 5 additions and 3 deletions

View File

@@ -1777,9 +1777,11 @@ class ReadCode : Code
class RestoreCodeS : Code
{
wstring label;
this(wstring label)
Scope scope_;
this(wstring label, Scope s)
{
this.label = label;
scope_ = s;
this.type = CodeType.RestoreCodeS;
}
override void execute(VM vm)