Forked from hermes-frontend, stripped openclaw/bun specifics: - Auth tokens: openclaw_session -> nyx_session - Vite proxy: localhost:3003 -> localhost:8000 (assay) - Prod WS: wss://assay.loop42.de/ws - Workspace paths: removed openclaw-specific paths - Added missing deps: @heroicons/vue, overlayscrollbars-vue - Branding: title -> nyx Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
21 lines
1.0 KiB
JavaScript
21 lines
1.0 KiB
JavaScript
"use strict";
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
exports.BinTrieFlags = void 0;
|
|
/**
|
|
* Bit flags & masks for the binary trie encoding used for entity decoding.
|
|
*
|
|
* Bit layout (16 bits total):
|
|
* 15..14 VALUE_LENGTH (+1 encoding; 0 => no value)
|
|
* 13 FLAG13. If valueLength>0: semicolon required flag (implicit ';').
|
|
* If valueLength==0: compact run flag.
|
|
* 12..7 BRANCH_LENGTH Branch length (0 => single branch in 6..0 if jumpOffset==char) OR run length (when compact run)
|
|
* 6..0 JUMP_TABLE Jump offset (jump table) OR single-branch char code OR first run char
|
|
*/
|
|
var BinTrieFlags;
|
|
(function (BinTrieFlags) {
|
|
BinTrieFlags[BinTrieFlags["VALUE_LENGTH"] = 49152] = "VALUE_LENGTH";
|
|
BinTrieFlags[BinTrieFlags["FLAG13"] = 8192] = "FLAG13";
|
|
BinTrieFlags[BinTrieFlags["BRANCH_LENGTH"] = 8064] = "BRANCH_LENGTH";
|
|
BinTrieFlags[BinTrieFlags["JUMP_TABLE"] = 127] = "JUMP_TABLE";
|
|
})(BinTrieFlags || (exports.BinTrieFlags = BinTrieFlags = {}));
|
|
//# sourceMappingURL=bin-trie-flags.js.map
|