Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/zakuro9715/vspect
Tools to inspect vlang source file
https://github.com/zakuro9715/vspect
Last synced: 3 months ago
JSON representation
Tools to inspect vlang source file
- Host: GitHub
- URL: https://github.com/zakuro9715/vspect
- Owner: zakuro9715
- License: gpl-3.0
- Archived: true
- Created: 2020-12-24T18:10:07.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2021-06-02T01:13:08.000Z (over 3 years ago)
- Last Synced: 2024-04-23T16:38:10.845Z (7 months ago)
- Language: Coq
- Homepage:
- Size: 198 KB
- Stars: 2
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-v - vspect - A tool to inspect vlang source file. ( Archived ) (Applications / Command-line)
README
# vspect
**vspect had been archived and no longer work. Use new V`s official command `v ast`**
inspect [vlang](https://github.com/vlang/v) source file
## Commands
- ast : Print ast
- tokens: Print tokens## Usage
```sh
# Print ast
vspect ast example.vv
# Print ast only specified function
vspect ast --fn=add example.vv
# Omit expr details
vspect ast --short-expr example.vv
```## Installation
```
git clone [email protected]:zakuro9715/vspect && cd vspect
v . -prod
./vspect
```## Development
- Using [z](https://github.com/zakuro9715/z)