Skip to content

Commit

Permalink
Updated README (#2825)
Browse files Browse the repository at this point in the history
This Pull Request updates the README by including the latest output of the `--help` command line argument in boa_cli.
  • Loading branch information
Razican committed Apr 15, 2023
1 parent 9dc4dd1 commit b1f4e0d
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 38 deletions.
50 changes: 13 additions & 37 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -71,48 +71,24 @@ then go to `http://localhost:8080`.

## Command-line Options

```shell
```
Usage: boa [OPTIONS] [FILE]...
Arguments:
[FILE]...
The JavaScript file(s) to be evaluated
[FILE]... The JavaScript file(s) to be evaluated
Options:
--strict
Run in strict mode

-a, --dump-ast [<FORMAT>]
Dump the AST to stdout with the given format

Possible values:
- debug: The different types of format available for dumping
- json
- json-pretty

-t, --trace
Dump the AST to stdout with the given format

--vi
Use vi mode in the REPL

--flowgraph [<FORMAT>]
Generate instruction flowgraph. Default is Graphviz

Possible values:
- graphviz: Generates in graphviz format: <https://graphviz.org/>
- mermaid: Generates in mermaid format: <https://mermaid-js.github.io/mermaid/>

--flowgraph-direction <FORMAT>
Specifies the direction of the flowgraph. Default is TopToBottom

[possible values: top-to-bottom, bottom-to-top, left-to-right, right-to-left]

-h, --help
Print help (see a summary with '-h')

-V, --version
Print version
--strict Run in strict mode
-a, --dump-ast [<FORMAT>] Dump the AST to stdout with the given format [possible values: debug, json, json-pretty]
-t, --trace Dump the AST to stdout with the given format
--vi Use vi mode in the REPL
-O, --optimize
--optimizer-statistics
--flowgraph [<FORMAT>] Generate instruction flowgraph. Default is Graphviz [possible values: graphviz, mermaid]
--flowgraph-direction <FORMAT> Specifies the direction of the flowgraph. Default is top-top-bottom [possible values: top-to-bottom, bottom-to-top, left-to-right, right-to-left]
--debug-object Inject debugging object `$boa`
-h, --help Print help (see more with '--help')
-V, --version Print version
```

## Roadmap
Expand Down
2 changes: 1 addition & 1 deletion boa_cli/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ struct Opt {
#[allow(clippy::option_option)]
flowgraph: Option<Option<FlowgraphFormat>>,

/// Specifies the direction of the flowgraph. Default is TopToBottom.
/// Specifies the direction of the flowgraph. Default is top-top-bottom.
#[arg(
long,
value_name = "FORMAT",
Expand Down

0 comments on commit b1f4e0d

Please sign in to comment.