(preprocessorFunc: OptionPreprocessor)
| 3055 | * Register option preprocessor |
| 3056 | */ |
| 3057 | export function registerPreprocessor(preprocessorFunc: OptionPreprocessor): void { |
| 3058 | if (indexOf(optionPreprocessorFuncs, preprocessorFunc) < 0) { |
| 3059 | optionPreprocessorFuncs.push(preprocessorFunc); |
| 3060 | } |
| 3061 | } |
| 3062 | |
| 3063 | /** |
| 3064 | * NOTICE: Alway run in block way (no progessive is allowed). |
no outgoing calls
no test coverage detected
searching dependent graphs…