(n *ast.Parameter)
| 1995 | } |
| 1996 | |
| 1997 | func (e *encoder) astParameter(n *ast.Parameter) (outID uint64) { |
| 1998 | e.build(&e.instances.AstParameter, e.maps.ASTParameter, n, &outID, func() *ASTParameter { |
| 1999 | return &ASTParameter{ |
| 2000 | Annotations: e.astAnnotations(n.Annotations), |
| 2001 | This: n.This, |
| 2002 | Type: e.astNode(n.Type), |
| 2003 | Name: e.astIdentifier(n.Name), |
| 2004 | } |
| 2005 | }) |
| 2006 | return |
| 2007 | } |
| 2008 | |
| 2009 | func (e *encoder) astPointerType(n *ast.PointerType) (outID uint64) { |
| 2010 | e.build(&e.instances.AstPointerType, e.maps.ASTPointerType, n, &outID, func() *ASTPointerType { |
no test coverage detected