()
| 18304 | ) |
| 18305 | } |
| 18306 | _getAllAutoCompleteAtoms() { |
| 18307 | return this.getAllAtomBoundaryCoordinates().map(coordinate => { |
| 18308 | const results = this.getAutocompleteResultsAt(coordinate.lineIndex, coordinate.charIndex) |
| 18309 | return { |
| 18310 | lineIndex: coordinate.lineIndex, |
| 18311 | charIndex: coordinate.charIndex, |
| 18312 | atomIndex: coordinate.atomIndex, |
| 18313 | atom: results.atom, |
| 18314 | suggestions: results.matches |
| 18315 | } |
| 18316 | }) |
| 18317 | } |
| 18318 | toAutoCompleteCube(fillChar = "") { |
| 18319 | const particles = [this.clone()] |
| 18320 | const filled = this.clone().fill(fillChar) |
no test coverage detected