PY-73353 Jupyter(fix): Fix remove table output

GitOrigin-RevId: 95db9ee363524d3aa2b546fa29c06798bbdf6c2b
This commit is contained in:
Nikita.Ashihmin
2024-06-28 19:28:03 +04:00
committed by intellij-monorepo-bot
parent 4e83a1a3d8
commit 7cdc4b1a2f

View File

@@ -65,6 +65,8 @@ interface NotebookCellLines {
fun intervalsIterator(startLine: Int = 0): ListIterator<Interval>
fun getCell(line: Int) = intervals.firstOrNull { it.lines.contains(line) }
val intervals: List<Interval>
val intervalListeners: EventDispatcher<IntervalListener>