xxxxxxxxxx
61
const TOKENS = {
ADD: "praetar",
SUB: "et meridiem",
DIV: "omne clausi onimi",
APP: "manere locus",
ARG_1: "solis",
ARG_2: "frigidum",
ARG_3: "narrat",
ARG_4: "cognitionis",
_1_4: "sonos beta",
_1_0: "omne dorsum",
s_7: "liberam et animi remis"
};
let countARG = 0;
class Value{
constructor(type, n = 1, d = 1){
this.type = type;
if(this.type === "Number") this.n = BigInt(n), this.d = BigInt(d);
}eval(){
return this;
}add(x){
}sub(x){
}div(x){
}app(x){
switch(this.type){
case "Number":
return this;
case TOKENS._1_4:
//beep();
return x.app(this);
case TOKENS._1_0:
return TOKENS.s_7;
case TOKENS.s_7:
return new Value("Number", 7);
}
}
}
class Expression{
constructor(tokens){
this.type = "Expression";
this.tokens = tokens;
}app(x){
}
}
function setup(){
}
function draw(){
}