Skip to content

Instantly share code, notes, and snippets.

@Morfly
Last active August 12, 2021 09:22
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Morfly/35df0e120247a8238b3915b2446b951d to your computer and use it in GitHub Desktop.
Save Morfly/35df0e120247a8238b3915b2446b951d to your computer and use it in GitHub Desktop.
KSP sample function processor constructor
package com.morfly
class FunctionProcessor(
private val codeGenerator: CodeGenerator,
private val logger: KSPLogger,
private val options: Map<String, String>
): SymbolProcessor {
override fun process(resolver: Resolver): List<KSAnnotated> {
// leave it blank for now
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment