AkkaLineNumbers

This parser has been copied from the akka-typed project and modified, as always these guys are way ahead of us! ;)

https://github.com/akka/akka/blob/4729a80e7e6f2923a7e6369b21b2693f82c64589/akka-actor/src/main/scala/akka/util/LineNumbers.scala

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).

class Object
trait Matchable
class Any

Type members

Classlikes

case object NoSourceInfo extends Result
sealed abstract class Result
final case class SourceFile(filename: String) extends Result
final case class SourceFileLines(filename: String, from: Int, to: Int, className: String, methodName: String) extends Result
final case class UnknownSourceFormat(explanation: String) extends Result

Value members

Concrete methods

final def apply(obj: AnyRef): Result

Scala API: Obtain line number information for the class defining the given object. This is done by reading the byte code (a potentially blocking IO operation) and interpreting the debug information that it may contain.

Scala API: Obtain line number information for the class defining the given object. This is done by reading the byte code (a potentially blocking IO operation) and interpreting the debug information that it may contain.

This does not work for Java 8 lambdas that are not Serializable, because the language designers have consciously made it impossible to obtain the byte code for those.