(astBlockID uint64)
| 1492 | } |
| 1493 | |
| 1494 | func (d *decoder) astBlock(astBlockID uint64) (out *ast.Block) { |
| 1495 | d.build(d.content.Instances.AstBlock, &d.inst.ASTBlock, astBlockID, &out, |
| 1496 | func(p *ASTBlock, s *ast.Block) { |
| 1497 | foreach(p.Statements, d.astNode, &s.Statements) |
| 1498 | }) |
| 1499 | return |
| 1500 | } |
| 1501 | |
| 1502 | func (d *decoder) astDeclareLocal(astDeclareLocalID uint64) (out *ast.DeclareLocal) { |
| 1503 | d.build(d.content.Instances.AstDeclareLocal, &d.inst.ASTDeclareLocal, astDeclareLocalID, &out, |
no test coverage detected