use of com.github._1c_syntax.bsl.languageserver.recognizer.CodeRecognizer in project bsl-language-server by 1c-syntax.
the class CommentedCodeDiagnostic method configure.
@Override
public void configure(Map<String, Object> configuration) {
threshold = ((Number) configuration.getOrDefault("threshold", threshold)).floatValue();
codeRecognizer = new CodeRecognizer(threshold, new BSLFootprint());
}
Aggregations