(node *ast.Node, pos int)
| 5928 | } |
| 5929 | |
| 5930 | func (p *Parser) finishNode(node *ast.Node, pos int) *ast.Node { |
| 5931 | return p.finishNodeWithEnd(node, pos, p.nodePos()) |
| 5932 | } |
| 5933 | |
| 5934 | func (p *Parser) finishNodeWithEnd(node *ast.Node, pos int, end int) *ast.Node { |
| 5935 | node.Loc = core.NewTextRange(pos, end) |
no test coverage detected