1
0
Fork
You've already forked jackal
0
No description
  • Janet 100%
Find a file
2026年03月16日 16:44:50 +09:00
.github/workflows Initial commit 2025年12月27日 19:41:39 +09:00
bin Reduce shadowing; update sbb, jell, jipper, niche 2026年03月16日 16:44:50 +09:00
bundle Reduce shadowing; update sbb, jell, jipper, niche 2026年03月16日 16:44:50 +09:00
data Initial commit 2025年12月27日 19:41:39 +09:00
src Reduce shadowing; update sbb, jell, jipper, niche 2026年03月16日 16:44:50 +09:00
test Use niche for testing 2026年01月17日 23:24:10 +09:00
usages Tweak formatting 2026年01月01日 15:36:19 +09:00
.jakl.conf Initial commit 2025年12月27日 19:41:39 +09:00
.jell.jdn Initial commit 2025年12月27日 19:41:39 +09:00
.niche.jdn Use niche for testing 2026年01月17日 23:24:10 +09:00
jakl Reduce shadowing; update sbb, jell, jipper, niche 2026年03月16日 16:44:50 +09:00
jakl.janet Reduce shadowing; update sbb, jell, jipper, niche 2026年03月16日 16:44:50 +09:00
README Mention -v in usage 2026年01月01日 15:39:16 +09:00

Usage: jakl all-calls <file-or-dir>...
 jakl calls-to <symbol> <file-or-dir>...
 jakl who-calls <symbol> <file-or-dir>...
 jakl [-h|--help] [-v|--version]
Query some Janet source code for call information.
Commands:
 all-calls show all identified calls
 calls-to show particular calls to <symbol>
 who-calls show callers of <symbol>
Parameters:
 <symbol> name of identifier to query with
 <file-or-dir> path to file or directory
Options:
 -h, --help show this output
 -v, --version show version information
Examples:
 all-calls:
 Show all calls within a file:
 $ jakl all-calls data/simple.janet
 Show all calls within a directory of `.janet` files
 $ jakl all-calls data/
 calls-to:
 Show all calls to `def` within a file:
 $ jakl calls-to def data/simple.janet
 Show all calls to `default` within a directory of
 `.janet` files:
 $ jakl calls-to default data/
 who-calls:
 Show all callers of `default` within a file:
 $ jakl who-calls default data/zipper.janet
 Show all callers of `default` within a directory of
 `.janet files`:
 $ jakl who-calls default data/