basic: omfg where are NOT-operators?

This commit is contained in:
minjaesong
2020-12-17 23:10:31 +09:00
parent 0acad8bd2f
commit f7b17e881f

View File

@@ -1227,7 +1227,7 @@ Object.freeze(bStatus.builtin);
let bF = {};
bF._1os = {"!":1,"~":1,"#":1,"<":1,"=":1,">":1,"*":1,"+":1,"-":1,"/":1,"^":1,":":1};
bF._2os = {"<":1,"=":1,">":1};
bF._uos = {"+":1,"-":1};
bF._uos = {"+":1,"-":1,"NOT":1,"BNOT":1};
bF._isNum = function(code) {
return (code >= 0x30 && code <= 0x39) || code == 0x5F;
};