Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jfacorro/erlang-function-deps
Get all functions that are being called from a function
https://github.com/jfacorro/erlang-function-deps
Last synced: 20 days ago
JSON representation
Get all functions that are being called from a function
- Host: GitHub
- URL: https://github.com/jfacorro/erlang-function-deps
- Owner: jfacorro
- License: apache-2.0
- Created: 2015-02-18T18:35:48.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2015-02-18T19:45:16.000Z (almost 10 years ago)
- Last Synced: 2024-11-18T09:42:21.964Z (3 months ago)
- Language: Erlang
- Size: 148 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# erlang-function-deps
Get all functions that are being called from a function#Usage
```
$ make app shellErlang/OTP 17 [erts-6.1] [source-d2a4c20] [64-bit] [smp:4:4] [async-threads:10] [hipe] [kernel-poll:false]
Starting Sync (Automatic Code Compiler / Reloader)
Scanning source files...
Eshell V6.1 (abort with ^G)
1> function_deps:get(ktn_code, parse_tree, 1).
[parse_tree]
2> function_deps:get(ktn_code, parse_tree, 2).
[to_str,
{erl_scan,string},
{aleppo,process_tokens},
{lists,partition},
split_when,
{lists,map},
to_map]
3>
```