Switch to https://github.com/Aussiemon/luajit-decompiler-v2 #152
Labels
No labels
ci
crate/dtmm
crate/dtmt
crate/sdk
crate/serde_sjson
kind
bug
kind
documentation
kind
enhancement
kind
feature
kind
question
kind
upstream
part/bundle
part/filetype
stage
actionable
stage
design
stage
proposal
status/duplicate
status/good first issue
status/help wanted
status/invalid
status
need-replicate
status/wontfix
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference: bitsquid_dt/dtmt#152
Loading…
Add table
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Since it's in C++, I can probably wrap it up with a C ABI, then link it statically on build.
The proper process would like be to migrate the project itself to a library+cli structure first, then create a
-sys
Rust crate with bindings to that library.From a quick glance at the code, that will be quite the rework in itself, as there doesn't seem to be any abstraction over where the binary data comes from. The file path is carried all the way through until
bytecode.cpp
. Pulling that out and abstraction over some generic bytestream will have to be the first step.