GetFunctionCall gets a FunctionCall from the pool
()
| 1124 | |
| 1125 | // GetFunctionCall gets a FunctionCall from the pool |
| 1126 | func GetFunctionCall() *FunctionCall { |
| 1127 | fc := functionCallPool.Get().(*FunctionCall) |
| 1128 | fc.Arguments = fc.Arguments[:0] |
| 1129 | return fc |
| 1130 | } |
| 1131 | |
| 1132 | // PutFunctionCall returns a FunctionCall to the pool |
| 1133 | func PutFunctionCall(fc *FunctionCall) { |