KSP sample function processor constructor
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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