1
0

ArrayAssignのbreak;忘れを修正,suffix無指定時の型をdoubleにした

This commit is contained in:
otya128
2015-06-12 22:07:48 +09:00
parent f84c4d20e5
commit 09ff06ec56
3 changed files with 5 additions and 3 deletions

View File

@@ -27,7 +27,7 @@ class VM
case '%':
return ValueType.Integer;
default:
return ValueType.Integer;//DEFINT時
return ValueType.Double;//DEFINT時
}
}
this(Code[] code, int len, int[wstring] globalTable)