(astIdentifierID uint64)
| 1611 | } |
| 1612 | |
| 1613 | func (d *decoder) astIdentifier(astIdentifierID uint64) (out *ast.Identifier) { |
| 1614 | d.build(d.content.Instances.AstIdentifier, &d.inst.ASTIdentifier, astIdentifierID, &out, |
| 1615 | func(p *ASTIdentifier, s *ast.Identifier) { |
| 1616 | s.Value = d.str(p.Value) |
| 1617 | }) |
| 1618 | return |
| 1619 | } |
| 1620 | |
| 1621 | func (d *decoder) astIndex(astIndexID uint64) (out *ast.Index) { |
| 1622 | d.build(d.content.Instances.AstIndex, &d.inst.ASTIndex, astIndexID, &out, |
no test coverage detected