From ce8d5c52d0fbac8be2c02b23e24179e28e1ee390 Mon Sep 17 00:00:00 2001 From: Peter Bengtsson Date: Wed, 3 Mar 2021 13:57:03 -0500 Subject: [PATCH] support more search operators (#3115) --- deployer/src/deployer/search/models.py | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/deployer/src/deployer/search/models.py b/deployer/src/deployer/search/models.py index dab2ca329760..73b55846fed6 100644 --- a/deployer/src/deployer/search/models.py +++ b/deployer/src/deployer/search/models.py @@ -94,6 +94,24 @@ "&&= => LogicalANDassignment", # E.g. https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/Logical_OR_assignment "||= => LogicalORassignment", + # E.g. https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/Exponentiation_assignment + "**= => Exponentiationassignment", + # E.g. https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/Multiplication_assignment + "*= => Multiplicationassignment", + # E.g. https://developer.mozilla.org/en-US/docs/Web/CSS/--* + "--* => CustompropertiesCSSVariables", + # E.g. https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/Exponentiation + "** => 'Exponentiation", + # E.g. http://localhost:3000/en-US/docs/Web/JavaScript/Reference/Operators/Strict_equality + "=== => Strictequality", + # E.g. https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/Strict_inequality + "!== => Strictinequality", + # E.g. https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/Equality + "== => Equality", + # E.g. https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/Inequality + "!= => Inequality", + # E.g. https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/Assignment + "= => Assignment", ], )