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

fix.treetokens.scala Maven / Gradle / Ivy

The newest version!
package scala
package meta
package contrib

import Token.Comment

object AComments {
  def trailingMap(ac: AssociatedComments): Map[Token, List[Comment]] = {
    val f = classOf[AssociatedComments].getDeclaredField("trailingMap")
    f.setAccessible(true)

    f.get(ac).asInstanceOf[Map[Token, List[Comment]]]
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy