(n *ast.Index)
| 1820 | } |
| 1821 | |
| 1822 | func (e *encoder) astIndex(n *ast.Index) (outID uint64) { |
| 1823 | e.build(&e.instances.AstIndex, e.maps.ASTIndex, n, &outID, func() *ASTIndex { |
| 1824 | return &ASTIndex{ |
| 1825 | Object: e.astNode(n.Object), |
| 1826 | Index: e.astNode(n.Index), |
| 1827 | } |
| 1828 | }) |
| 1829 | return |
| 1830 | } |
| 1831 | |
| 1832 | func (e *encoder) astIndexedType(n *ast.IndexedType) (outID uint64) { |
| 1833 | e.build(&e.instances.AstIndexedType, e.maps.ASTIndexedType, n, &outID, func() *ASTIndexedType { |
no test coverage detected