Skip to content

Instantly share code, notes, and snippets.

@bnorm
Created November 21, 2020 19:21
Show Gist options
  • Save bnorm/2837b9ad3f868e131a2df469084dfbfb to your computer and use it in GitHub Desktop.
Save bnorm/2837b9ad3f868e131a2df469084dfbfb to your computer and use it in GitHub Desktop.
class TemplateIrGenerationExtension(
private val messageCollector: MessageCollector,
private val string: String,
private val file: String
) : IrGenerationExtension {
override fun generate(moduleFragment: IrModuleFragment, pluginContext: IrPluginContext) {
messageCollector.report(CompilerMessageSeverity.INFO, "Argument 'string' = $string")
messageCollector.report(CompilerMessageSeverity.INFO, "Argument 'file' = $file")
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment