(lineIndex, characterIndex)
| 18886 | return this.getParticle()._getLineNumber() // todo: handle sourcemaps |
| 18887 | } |
| 18888 | isCursorOnAtom(lineIndex, characterIndex) { |
| 18889 | return lineIndex === this.getLineIndex() && this._doesCharacterIndexFallOnAtom(characterIndex) |
| 18890 | } |
| 18891 | _doesCharacterIndexFallOnAtom(characterIndex) { |
| 18892 | return this.atomIndex === this.getParticle().getAtomIndexAtCharacterIndex(characterIndex) |
| 18893 | } |
nothing calls this directly
no test coverage detected