(n *ast.Block)
| 1612 | } |
| 1613 | |
| 1614 | func (e *encoder) astBlock(n *ast.Block) (outID uint64) { |
| 1615 | e.build(&e.instances.AstBlock, e.maps.ASTBlock, n, &outID, func() *ASTBlock { |
| 1616 | p := &ASTBlock{} |
| 1617 | foreach(n.Statements, e.astNode, &p.Statements) |
| 1618 | return p |
| 1619 | }) |
| 1620 | return |
| 1621 | } |
| 1622 | |
| 1623 | func (e *encoder) astBool(n *ast.Bool) (outID uint64) { |
| 1624 | e.build(&e.instances.AstBool, e.maps.ASTBool, n, &outID, func() *ASTBool { |
no test coverage detected