We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9699c69 commit c31483fCopy full SHA for c31483f
1 file changed
protovalidate/internal/extra_func.py
@@ -1561,19 +1561,6 @@ def make_extra_funcs() -> cel.CelExtension:
1561
)
1562
],
1563
),
1564
- # string.matches(pattern) -> bool — override built-in to use RE2
1565
- cel.FunctionDecl(
1566
- "matches",
1567
- [
1568
- cel.Overload(
1569
- "matches_string_string",
1570
- return_type=cel.Type.BOOL,
1571
- parameters=[cel.Type.STRING, cel.Type.STRING],
1572
- is_member=True,
1573
- impl=cel_matches,
1574
- )
1575
- ],
1576
- ),
1577
# getField(message, fieldName) -> dyn — global function for reserved-keyword fields
1578
cel.FunctionDecl(
1579
"getField",
0 commit comments