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

scala.meta.internal.parsers.NestedContext.scala Maven / Gradle / Ivy

There is a newer version: 4.10.1
Show newest version
package scala.meta.internal.parsers

/** Utility for tracking a context, like whether we are inside a pattern or a quote. */
private[parsers] trait NestedContext {
  private var nested = 0
  def within[T](body: => T): T = {
    nested += 1
    try body
    finally nested -= 1
  }
  @inline
  def isInside() = isDeeper(0)
  @inline
  def isDeeper(level: Int) = nested > level
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy