GetCastExpression gets a CastExpression from the pool
()
| 1272 | |
| 1273 | // GetCastExpression gets a CastExpression from the pool |
| 1274 | func GetCastExpression() *CastExpression { |
| 1275 | return castExprPool.Get().(*CastExpression) |
| 1276 | } |
| 1277 | |
| 1278 | // PutCastExpression returns a CastExpression to the pool |
| 1279 | func PutCastExpression(ce *CastExpression) { |