Crates.io | nanopre |
lib.rs | nanopre |
version | 0.1.2 |
source | src |
created_at | 2022-01-10 23:12:23.717419 |
updated_at | 2022-02-14 07:54:08.809112 |
description | A a zero-dependency, no-unsafe implementation of a minimal C-style text preprocessor. |
homepage | |
repository | https://github.com/AlphaModder/nanopre |
max_upload_size | |
id | 511943 |
size | 26,649 |
nanopre
nanopre
is a zero-dependency, no-unsafe
implementation of an extremely minimal C-style text preprocessor. At present, nanopre
is in a minimum viable product state, which is to say that while it is functional and free of bugs to the best of my knowledge, it is not battle-tested, stable, or feature-complete.
Context::define
allows specifying 'macros,' strings of the form [a-zA-z_][a-zA-Z0-9_]*
which should be replaced by an arbitrary string everywhere they appear in the input (when surrounded by word boundaries). Macros cannot currently accept arguments or expand to other macros or preprocessor directives.#if
, #elseif
, #else
, and #endif
allow the conditional inclusion of code based on the evaluation of simple boolean expressions. The literals are 0
and 1
, the supported operators are &&
, ||
, and !
, and parentheses may be used for grouping. Evaluation is left-associative. While no other tokens are permitted in these expressions, they are evaluated after macro substitution, so you may use macros which evaluate to 1
or 0
as a substitute for variables.#include
can be supported by defining a struct which implements Includes
and passing it to Context::with_includes
. The struct is responsible for mapping include paths to their contents.#define
for defining macros within the input.nanopre
is in part inspired by Diggsey's minipre
, which I used before building this project.