JOJ3/internal/parsers/cppcheck/meta.go
张佳澈520370910044 5ac760814d feat: cppcheck parser ()
Co-authored-by: zjc_he <zjc_he@sjtu.edu.cn>
Reviewed-on: 
Reviewed-by: 张泊明518370910136 <bomingzh@sjtu.edu.cn>
Co-authored-by: 张佳澈520370910044 <zjc_he@sjtu.edu.cn>
Co-committed-by: 张佳澈520370910044 <zjc_he@sjtu.edu.cn>
2024-05-30 11:12:30 +08:00

10 lines
161 B
Go

package cppcheck
import "focs.ji.sjtu.edu.cn/git/FOCS-dev/JOJ3/internal/stage"
var name = "cppcheck"
func init() {
stage.RegisterParser(name, &CppCheck{})
}