| 1266 | } |
| 1267 | |
| 1268 | const ValueSchema* ValueFunctionSchema::getParameters() const { |
| 1269 | InlineContainerAllocator<ValueFunctionSchema, ValueSchema> allocator; |
| 1270 | return allocator.getContainerStartPtr(this); |
| 1271 | } |
| 1272 | |
| 1273 | const ValueSchema& ValueFunctionSchema::getParameter(size_t index) const { |
| 1274 | return getParameters()[index]; |
no test coverage detected