gh-pages / com.nextfaze.devfun.compiler / FLAG_DEBUG_COMMENTS
FLAG_DEBUG_COMMENTS
const val FLAG_DEBUG_COMMENTS: String (source)
Flag to output additional debug info as code comments. (default: false)
Will show various class/function enclosing types, arg types, modifiers, etc.
Set using APT options:
android {
defaultConfig {
javaCompileOptions {
annotationProcessorOptions {
argument("devfun.debug.comments", "true")
}
}
}
}