You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Introduce 2 synthetic variables in Expression Language:
- @key
- @value
to reference directly key or value when filtering on a map
(filter, any, all) on top of existing @it variable.
fix pretty print for filtering expression to add curly braces
Copy file name to clipboardExpand all lines: dd-java-agent/agent-debugger/debugger-bootstrap/src/main/java/datadog/trace/bootstrap/debugger/el/ValueReferences.java
+4
Original file line number
Diff line number
Diff line change
@@ -14,10 +14,14 @@ public final class ValueReferences {
Copy file name to clipboardExpand all lines: dd-java-agent/agent-debugger/debugger-el/src/main/java/com/datadog/debugger/el/expressions/FilterCollectionExpression.java
+6-5
Original file line number
Diff line number
Diff line change
@@ -58,13 +58,14 @@ public CollectionValue<?> evaluate(ValueReferenceResolver valueRefResolver) {
Copy file name to clipboardExpand all lines: dd-java-agent/agent-debugger/debugger-el/src/main/java/com/datadog/debugger/el/expressions/HasAllExpression.java
Copy file name to clipboardExpand all lines: dd-java-agent/agent-debugger/debugger-el/src/main/java/com/datadog/debugger/el/expressions/HasAnyExpression.java
Copy file name to clipboardExpand all lines: dd-java-agent/agent-debugger/debugger-el/src/test/java/com/datadog/debugger/el/expressions/FilterCollectionExpressionTest.java
0 commit comments