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

scala.tools.scalap.scalax.rules.scalasig.SourceFileAttributeParser.scala Maven / Gradle / Ivy

package scala.tools.scalap
package scalax
package rules
package scalasig

/**
 * @author ilyas
 */

object SourceFileAttributeParser extends ByteCodeReader {
  val sourceFile = u2 ^^ SourceFileInfo

  def parse(byteCode: ByteCode) = expect(sourceFile)(byteCode)
}

/**
 *
 * SourceFile_attribute {
    	u2 attribute_name_index;
    	u4 attribute_length;
    	u2 sourcefile_index;
    }
 *
 * Contains only file index in ConstantPool, first two fields are already treated
 * by {@link scalax.rules.scalasig.ClassFile.attribute#attribute}
 */
case class SourceFileInfo(sourceFileIndex: Int)





© 2015 - 2025 Weber Informatics LLC | Privacy Policy