16 lines
315 B
C
16 lines
315 B
C
|
|
%skip: [' ', '\t', '\n'];
|
|
|
|
%find: "if" "(" "!" "(" (cond: /[!('(', ')')]/ | "(" cond ")") ")" ")" "{"
|
|
(true_case: /[!('{', '}')]/ | "{" true_case "}")
|
|
"}" "else" "{"
|
|
(false_case: /[!('{', '}')]/ | "{" false_case "}")
|
|
"}";
|
|
|
|
%replace: "if" "(" cond ")" "{"
|
|
false_case
|
|
"}" "else" "{"
|
|
true_case
|
|
"}";
|
|
|
|
|