Test whether this is a callout function.
| 265 | |
| 266 | /// Test whether this is a callout function. |
| 267 | bool isCallout() const { return mFunctionFlags.test( EngineFunctionCallout ); } |
| 268 | |
| 269 | /// Test whether the function is variadic, i.e. takes a variable number of arguments. |
| 270 | bool isVariadic() const { return mFunctionType->isVariadic(); } |
no test coverage detected