Packages

package util

Ordering
  1. Alphabetic
Visibility
  1. Public
  2. All

Type Members

  1. final case class Deprecated (message: String, since: String) extends Product with Serializable

    Identical to scala.deprecated except it's a case class.

  2. sealed abstract class MatchingParens extends AnyRef
  3. trait Newline extends AnyRef
  4. trait SemanticdbIndex extends AnyRef

    An index for looking up data in a scala.meta.Database.

  5. final class SymbolMatcher extends AnyRef

    Utility to match against a particular symbol.

    Utility to match against a particular symbol.

    Can be used both in pattern matching and regular condition testing.

    val myMethod = SymbolMatcher(Symbol("_root_.myMethod"))
    myMethod.matches(Tree)
    Tree match {
      case myMethod(_) => // act on tree
    }
    myMethod.matches(Tree)
  6. class TokenList extends AnyRef

    Helper to traverse tokens as a doubly linked list.

  7. trait Trivia extends AnyRef
  8. trait Whitespace extends AnyRef

Ungrouped