Packages

  • package root
    Definition Classes
    root
  • package akka
    Definition Classes
    root
  • package util
    Definition Classes
    akka
  • object LineNumbers

    This is a minimized byte-code parser that concentrates exclusively on line numbers and source file extraction.

    This is a minimized byte-code parser that concentrates exclusively on line numbers and source file extraction. It works for all normal classes up to format 52:0 (JDK8), and it also works for Lambdas that are Serializable. The latter restriction is due to the fact that the proxy object generated by LambdaMetafactory otherwise contains no information about which method backs this particular lambda (and there might be multiple defined within a single class).

    Definition Classes
    util
  • NoSourceInfo
  • Result
  • SourceFile
  • SourceFileLines
  • UnknownSourceFormat
c

akka.util.LineNumbers

SourceFileLines

final case class SourceFileLines(filename: String, from: Int, to: Int) extends Result with Product with Serializable

Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. SourceFileLines
  2. Serializable
  3. Serializable
  4. Product
  5. Equals
  6. Result
  7. AnyRef
  8. Any
Implicitly
  1. by any2stringadd
  2. by StringFormat
  3. by Ensuring
  4. by ArrowAssoc
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new SourceFileLines(filename: String, from: Int, to: Int)

Value Members

  1. val filename: String
  2. val from: Int
  3. val to: Int
  4. def toString(): String
    Definition Classes
    SourceFileLines → AnyRef → Any