(prefix)
| 343 | } |
| 344 | |
| 345 | test(prefix) { |
| 346 | let {args, returns} = this.resolve(prefix); |
| 347 | let [text, az] = args; |
| 348 | if(!this.validAsOption(az)) return false; |
| 349 | if(typeof text !== "string") return false; |
| 350 | return this.getLength(text, az) === returns[0]; |
| 351 | } |
| 352 | |
| 353 | getProposal(tripleIndex, proposed, prefix) { |
| 354 | let proposal = this.proposalObject; |
nothing calls this directly
no test coverage detected