Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.
public genSuggestions(
collector: SuggestionCollector,
compoundMethod: CompoundWordsMethod = CompoundWordsMethod.SEPARATE_WORDS
): void {
compoundMethod = this.options.useCompounds ? CompoundWordsMethod.JOIN_WORDS : compoundMethod;
this.trie.genSuggestions(collector, compoundMethod);
}
}