This commit is contained in:
simon 2018-01-01 16:44:14 -05:00
parent e7745e7810
commit c943c829f0

View File

@ -172,7 +172,7 @@ function getOperandType(text, result) {
//Check IMM
if (!isNaN(Number(text)) && Number(text) === Math.floor(Number(text)) && text.indexOf("o") === -1
&& text.indexOf("e") === -1) {
&& text.indexOf("0e") !== 0) {
return OPERAND_IMM;
}