(text string, symbol *ast.Symbol)
| 3512 | } |
| 3513 | |
| 3514 | func (b *NodeBuilderImpl) newIdentifier(text string, symbol *ast.Symbol) *ast.Node { |
| 3515 | id := b.f.NewIdentifier(text) |
| 3516 | if symbol != nil { |
| 3517 | b.idToSymbol[id] = symbol |
| 3518 | } |
| 3519 | return id |
| 3520 | } |
| 3521 | |
| 3522 | func (b *NodeBuilderImpl) createAccessExpression(node *ast.Node) *ast.Expression { |
| 3523 | switch { |
no test coverage detected