Extended context filter config schema to accept optional radius parameter

This commit is contained in:
Bartek Kryza
2023-11-09 23:09:17 +01:00
parent 237ef26389
commit 055897f11b
6 changed files with 95 additions and 35 deletions

View File

@@ -112,6 +112,13 @@ types:
- function
- function_template
- lambda
context_filter_match_t:
match:
radius: int
pattern: regex_or_string_t
context_filter_t:
- regex_or_string_t
- context_filter_match_t
filter_t:
namespaces: !optional [regex_or_string_t]
elements: !optional [regex_or_string_t]
@@ -123,7 +130,7 @@ types:
specializations: !optional [regex_or_string_t]
dependants: !optional [regex_or_string_t]
dependencies: !optional [regex_or_string_t]
context: !optional [regex_or_string_t]
context: !optional [context_filter_t]
paths: !optional [string]
method_types: !optional [method_type_filter_t]
callee_types: !optional [callee_type_filter_t]