(f string)
| 59 | } |
| 60 | |
| 61 | func isBinaryMath(f string) bool { |
| 62 | return f == "*" || f == "+" || f == "-" || f == "/" || f == "%" |
| 63 | } |
| 64 | |
| 65 | func isTernary(f string) bool { |
| 66 | return f == "cond" |
no outgoing calls
no test coverage detected
searching dependent graphs…