()
| 1075 | } |
| 1076 | } |
| 1077 | nextKey() { |
| 1078 | if (this[SYM_AGENT_KEYS] === null |
| 1079 | || ++this[SYM_AGENT_KEYS_IDX] >= this[SYM_AGENT_KEYS].length) { |
| 1080 | return false; |
| 1081 | } |
| 1082 | |
| 1083 | return this[SYM_AGENT_KEYS][this[SYM_AGENT_KEYS_IDX]]; |
| 1084 | } |
| 1085 | currentKey() { |
| 1086 | if (this[SYM_AGENT_KEYS] === null |
| 1087 | || this[SYM_AGENT_KEYS_IDX] >= this[SYM_AGENT_KEYS].length) { |