rd-kt/rd-framework/src/main/kotlin/com/jetbrains/rd/framework/impl/RdList.kt [225:237]: - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - override fun print(printer: PrettyPrinter) { super.print(printer) printer.print(" [") if (!isEmpty()) printer.println() printer.indent { forEach { it.print(printer) printer.println() } } printer.print("]") } - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - rd-kt/rd-framework/src/main/kotlin/com/jetbrains/rd/framework/impl/RdSet.kt [81:93]: - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - override fun print(printer: PrettyPrinter) { super.print(printer) printer.print(" [") if (!isEmpty()) printer.println() printer.indent { forEach { it.print(printer) printer.println() } } printer.print("]") } - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -