(a, b string)
| 13 | } |
| 14 | |
| 15 | func Less(a, b string) bool { |
| 16 | return Binary[a].Precedence < Binary[b].Precedence |
| 17 | } |
| 18 | |
| 19 | func IsBoolean(op string) bool { |
| 20 | return op == "and" || op == "or" || op == "&&" || op == "||" |
no outgoing calls
no test coverage detected
searching dependent graphs…