Skip to content

Commit

Permalink
chore: update chapi to 2.2.5 for C support and container content
Browse files Browse the repository at this point in the history
  • Loading branch information
phodal committed Jan 8, 2024
1 parent 223ac40 commit 3f374cb
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,11 @@ import org.archguard.rule.core.Rule
import org.archguard.rule.core.RuleContext

open class CommentRule : Rule() {
override fun visit(rootNode: Any, context: RuleContext, callback: IssueEmit) {
fun visitRoot(node: CodeDataStruct, comment: String, context: RuleContext, callback: IssueEmit) {

}

open fun visitDataStruct(dataStruct: CodeDataStruct, index: Int, callback: IssueEmit) {}
open fun visitFunction(function: CodeFunction, index: Int, callback: IssueEmit) {}
fun visitFunction(node: CodeFunction, comment: String, context: RuleContext, callback: IssueEmit) {

}
}
2 changes: 1 addition & 1 deletion gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ clikt = "4.2.1"

chocolate-factory = "0.4.5"

chapi = "2.2.4"
chapi = "2.2.5"
archguard = "2.1.2"
codedb = "0.1.3"

Expand Down

0 comments on commit 3f374cb

Please sign in to comment.