jsIndexStatementFor

Undocumented in source.
enum jsIndexStatementFor = `( function a(table, op) { const ops = 7; if (op == "insert"){ return table * ops + 0; } else if(op == "update"){ return table * ops + 1; } else if(op == "delete"){ return table * ops + 2; } else if(op == "updateDecorations"){ return table * ops + 3; } else if(op == "select"){ return table * ops + 4; } else if(op == "selectFromWhere"){ return table * ops + 5; } else if(op == "updateDecoratedRecord"){ return table * ops + 6; } alert("unknown ops!"); }) `;

Meta