Skip to content

Commit 12cf8e2

Browse files
committed
Add functions-txt subcommand to extract_functions.php
1 parent 7ef8a77 commit 12cf8e2

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

script/extract_functions.php

+7
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,13 @@
3333
'functions' => function (array $extracted) {
3434
echo json_encode(array_map(array_keys(...), $extracted), JSON_PRETTY_PRINT), PHP_EOL;
3535
},
36+
'functions-txt' => function (array $extracted) {
37+
foreach ($extracted as $functions) {
38+
foreach ($functions as $name => $_) {
39+
echo $name, PHP_EOL;
40+
}
41+
}
42+
},
3643
'functions-sexp' => function (array $extracted) {
3744
echo " '(";
3845
foreach ($extracted as $module => $functions) {

0 commit comments

Comments
 (0)