1
0

演算をdouble対応にした

This commit is contained in:
otya128
2015-06-07 19:11:18 +09:00
parent c871927bc3
commit 978a7a6ee7
5 changed files with 139 additions and 26 deletions

View File

@@ -3,6 +3,7 @@ import otya.smilebasic.node;
import otya.smilebasic.token;
import otya.smilebasic.vm;
import otya.smilebasic.type;
import otya.smilebasic.error;
import std.stdio;
class Compiler
{
@@ -75,6 +76,7 @@ class Compiler
else
{
//error:二重定義
throw new DuplicateVariable();
}
return global;
}