static S getString(Map map, O key) {
ret map == null ? null : (S) map.get(key);
}
static S getString(L l, int idx) {
ret (S) get(l, idx);
}
static S getString(O o, O key) {
if (o instanceof Map) ret getString((Map) o, key);
if (key instanceof S)
ret (S) getOpt(o, (S) key);
throw fail("Not a string key: " + getClassName(key));
}
static S mapMethodLike getString(S key, O o) {
ret getString(o, (O) key);
}download show line numbers debug dex old transpilations
Travelled to 18 computer(s): aoiabmzegqzx, bhatertpkbcr, cbybwowwnfue, cfunsshuasjs, gwrvuhgaqvyk, ishqpsrjomds, lnbujpyubztb, lpdgvwnxivlt, mqqgnosmbjvj, onxytkatvevr, pyentgdyhuwx, pzhvpgtvlbxg, tslmcundralx, tvejysmllsmz, vouqrxazstgt, whxojlpjdney, xfddqsrefgvo, yanjaxplzisb
No comments. add comment