File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -720,7 +720,7 @@ impl Executor {
720
720
} ) ;
721
721
}
722
722
723
- // Mapping
723
+ // Mapping a list
724
724
"map" => {
725
725
let code = self . pop_stack ( ) . get_string ( ) ;
726
726
let vars = self . pop_stack ( ) . get_string ( ) ;
@@ -740,7 +740,7 @@ impl Executor {
740
740
self . stack . push ( Type :: List ( result_list) ) ;
741
741
}
742
742
743
- // Filtering
743
+ // Filtering a list value
744
744
"filter" => {
745
745
let code = self . pop_stack ( ) . get_string ( ) ;
746
746
let vars = self . pop_stack ( ) . get_string ( ) ;
@@ -763,6 +763,7 @@ impl Executor {
763
763
self . stack . push ( Type :: List ( result_list) ) ;
764
764
}
765
765
766
+ // Generate value from list
766
767
"reduce" => {
767
768
let code = self . pop_stack ( ) . get_string ( ) ;
768
769
let now = self . pop_stack ( ) . get_string ( ) ;
You can’t perform that action at this time.
0 commit comments