(options)
| 14247 | setFunctionName(countSizeFunction, "size"); |
| 14248 | class CountQueuingStrategy2 { |
| 14249 | constructor(options) { |
| 14250 | assertRequiredArgument(options, 1, "CountQueuingStrategy"); |
| 14251 | options = convertQueuingStrategyInit(options, "First parameter"); |
| 14252 | this._countQueuingStrategyHighWaterMark = options.highWaterMark; |
| 14253 | } |
| 14254 | /** |
| 14255 | * Returns the high water mark provided to the constructor. |
| 14256 | */ |
nothing calls this directly
no test coverage detected