Crates.io | full_moon |
lib.rs | full_moon |
version | |
source | src |
created_at | 2019-04-05 02:11:04.220826 |
updated_at | 2025-01-10 02:43:17.013791 |
description | A lossless Lua parser |
homepage | |
repository | https://github.com/Kampfkarren/full-moon |
max_upload_size | |
id | 125906 |
Cargo.toml error: | TOML parse error at line 18, column 1 | 18 | autolib = false | ^^^^^^^ unknown field `autolib`, expected one of `name`, `version`, `edition`, `authors`, `description`, `readme`, `license`, `repository`, `homepage`, `documentation`, `build`, `resolver`, `links`, `default-run`, `default_dash_run`, `rust-version`, `rust_dash_version`, `rust_version`, `license-file`, `license_dash_file`, `license_file`, `licenseFile`, `license_capital_file`, `forced-target`, `forced_dash_target`, `autobins`, `autotests`, `autoexamples`, `autobenches`, `publish`, `metadata`, `keywords`, `categories`, `exclude`, `include` |
size | 0 |
A lossless Lua 5.1 / 5.2 / 5.3 / 5.4 / Luau parser written in Rust.
Full Moon preserves comments, whitespace, style choices, etc. With Full Moon, you're able to convert your Lua code into an AST and a syntax tree and convert it back to the original code exactly.
Using Full Moon, you'll be able to modify the AST directly and re-export it back to Lua, all while preserving the style in which you write.
Full Moon is usable in projects such as:
Full Moon is heavily inspired by LPGhatguy's mab and by the possibilities brought on by benjamn's recast.