(idx int, t ast.Expr)
| 307 | } |
| 308 | |
| 309 | func (p *gc_bin_parser) recordMaybe(idx int, t ast.Expr) ast.Expr { |
| 310 | if idx == -1 { |
| 311 | return t |
| 312 | } |
| 313 | p.typList[idx] = t |
| 314 | return t |
| 315 | } |
| 316 | |
| 317 | func (p *gc_bin_parser) record(t ast.Expr) { |
| 318 | p.typList = append(p.typList, t) |