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

mdoc.internal.pos.MatchingToken.scala Maven / Gradle / Ivy

There is a newer version: 2.2.24
Show newest version
package mdoc.internal.pos

import scala.meta.Token

/** A pair of tokens that align with each other across two different files */
case class MatchingToken(original: Token, revised: Token) {
  override def toString: String =
    s"${original.structure} <-> ${revised.structure}"
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy