Skip to content

Commit

Permalink
Add source map generation support
Browse files Browse the repository at this point in the history
  • Loading branch information
dalance committed Jun 7, 2024
1 parent cbbcbae commit 358f508
Show file tree
Hide file tree
Showing 132 changed files with 555 additions and 36 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -11,3 +11,4 @@ veryl_testcase.*
/dependencies/
/book/po/messages.pot
/book/po/*~
/testcases/map/dependencies/
146 changes: 144 additions & 2 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ members = [
"crates/mdbook",
"crates/metadata",
"crates/parser",
"crates/sourcemap",
"crates/tests",
"crates/veryl",
]
Expand Down
1 change: 1 addition & 0 deletions Veryl.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ reset_type = "async_low"
reset_low_suffix = "_n"
filelist_type = "absolute"
target = {type = "directory", path = "testcases/sv"}
sourcemap_target = {type = "directory", path = "testcases/map"}

[format]
indent_width = 4
Expand Down
1 change: 1 addition & 0 deletions crates/emitter/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,3 +18,4 @@ strnum_bitwidth = {workspace = true}
veryl-analyzer = {version = "0.10.1", path = "../analyzer"}
veryl-metadata = {version = "0.10.1", path = "../metadata"}
veryl-parser = {version = "0.10.1", path = "../parser"}
veryl-sourcemap = {version = "0.10.1", path = "../sourcemap"}
Loading

0 comments on commit 358f508

Please sign in to comment.