Path: blob/master/Utilities/ast-grep/rules/cmhasprefix-char.yml
5016 views
---1id: cmhasprefix-char2language: Cpp3severity: warning4message: "`cmHasPrefix` with a one-char prefix search should use `cmHasPrefix`"5rule:6kind: string_literal7pattern: $ARG8follows:9regex: '(,|[(])'10inside:11matches: cmhasprefix-call12stopBy:13kind: call_expression14constraints:15ARG:16regex: '^"(.|\\.)"$'17transform:18ARG_CHANGE_QUOTE:19replace:20source: $ARG21replace: '(^"|"$)'22by: "'"23ARG_ESCAPE_SINGLE_QUOTE:24replace:25source: $ARG_CHANGE_QUOTE26replace: "'''"27by: "'\\''"28ARG_OUT:29replace:30source: $ARG_ESCAPE_SINGLE_QUOTE31replace: '\\"'32by: '"'33fix: $ARG_OUT343536