All Downloads are FREE. Search and download functionalities are using the official Maven repository.

mdoc.internal.markdown.Nesting.scala Maven / Gradle / Ivy

There is a newer version: 2.6.1
Show newest version
package mdoc.internal.markdown

import java.io.PrintStream

class Nesting(sb: PrintStream) {
  private var nestCount = 0
  def nest(): Unit = {
    nestCount += 1
    sb.append(s"_root_.scala.Predef.locally {\n")
  }
  def unnest(): Unit = {
    1.to(nestCount).foreach { _ => sb.print("};") }
    nestCount = 0
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy