From 60de1689de414ef6c2ae99ca0bbc2a3be8eb3d6e Mon Sep 17 00:00:00 2001 From: David Contreras Date: Wed, 14 Feb 2024 10:03:12 -0600 Subject: [PATCH] docs: describe `getAllAsMap` in the Parser docs (#3158) --- docs/expressions/parsing.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/docs/expressions/parsing.md b/docs/expressions/parsing.md index 9e8d1cbc8a..b11eb8132d 100644 --- a/docs/expressions/parsing.md +++ b/docs/expressions/parsing.md @@ -167,7 +167,9 @@ The parser contains the following functions: - `get(name)` Retrieve a variable or function from the parser's scope. - `getAll()` - Retrieve a map with all defined a variables from the parser's scope. + Retrieve an object with all defined variables in the parser's scope. +- `getAllAsMap()` + Retrieve a map with all defined variables in the parser's scope. - `remove(name)` Remove a variable or function from the parser's scope. - `set(name, value)`