You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// TODO We should be finding the KDeclaration on which we can get a KDoc instance and,
}
private fun KtSourceElement.findAndParseKDoc(): String? {
return null
// TODO We should be finding the KDeclaration on which we can get a KDoc instance and,
// hopefully, parsed KDoc rather than raw KDoc.
// return treeStructure.getChildrenArray(lighterASTNode)
// .filterNotNull()
// .firstOrNull { it.tokenType == KDocTokens.KDOC }
// ?.let { treeStructure.toString(it).toString() }
}
private fun FirContext.findSchemaAnnotation(
The text was updated successfully, but these errors were encountered:
hopefully, parsed KDoc rather than raw KDoc.
return treeStructure.getChildrenArray(lighterASTNode)
.filterNotNull()
.firstOrNull { it.tokenType == KDocTokens.KDOC }
?.let { treeStructure.toString(it).toString() }
redwood/redwood-tooling-schema/src/main/kotlin/app/cash/redwood/tooling/schema/schemaParserFir.kt
Line 621 in 6085c7b
The text was updated successfully, but these errors were encountered: