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

dotty.tools.dotc.interfaces.CompilerCallback Maven / Gradle / Ivy

There is a newer version: 3.6.0-RC1-bin-20240918-be10596-NIGHTLY
Show newest version
package dotty.tools.dotc.interfaces;

/** Set of callbacks called in response to events during the compilation process.
 *
 *  You should implement this interface if you want to react to one or more of
 *  these events.
 *
 *  See the method `process` of `dotty.tools.dotc.Driver` for more information.
 */
public interface CompilerCallback {
  /** Called when a class has been generated.
   *
   *  @param source         The source file corresponding to this class.
   *                        Example: ./src/library/scala/collection/Seq.scala
   *  @param generatedClass The generated classfile for this class.
   *                        Example: ./scala/collection/Seq$.class
   *  @param className      The name of this class.
   *                        Example: scala.collection.Seq$
   */
  default void onClassGenerated(SourceFile source, AbstractFile generatedClass, String className) {};

  /** Called when every class for this file has been generated.
   *
   *  @param source         The source file.
   *                        Example: ./src/library/scala/collection/Seq.scala
   */
  default void onSourceCompiled(SourceFile source) {};
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy