PutIdentifier returns an Identifier to the pool
(ident *Identifier)
| 724 | |
| 725 | // PutIdentifier returns an Identifier to the pool |
| 726 | func PutIdentifier(ident *Identifier) { |
| 727 | if ident == nil { |
| 728 | return |
| 729 | } |
| 730 | ident.Name = "" |
| 731 | identifierPool.Put(ident) |
| 732 | } |
| 733 | |
| 734 | // GetBinaryExpression gets a BinaryExpression from the pool |
| 735 | func GetBinaryExpression() *BinaryExpression { |