(b int)
| 273 | } |
| 274 | |
| 275 | func not(b int) int { |
| 276 | if b == 0 { |
| 277 | return 1 |
| 278 | } |
| 279 | return 0 |
| 280 | } |
| 281 | |
| 282 | func makeExpression(kind, info int) exprDesc { |
| 283 | return exprDesc{f: noJump, t: noJump, kind: kind, info: info} |
no outgoing calls
no test coverage detected