From 74f35b55abf25277f8c1dee6f183ab882526583e Mon Sep 17 00:00:00 2001 From: cpunch Date: Thu, 31 Jul 2025 23:59:02 -0500 Subject: [PATCH] added 'Lift Constants' option --- content/docs/options/mangle-statements.md | 1 + 1 file changed, 1 insertion(+) diff --git a/content/docs/options/mangle-statements.md b/content/docs/options/mangle-statements.md index 968fa9b..519f618 100644 --- a/content/docs/options/mangle-statements.md +++ b/content/docs/options/mangle-statements.md @@ -11,6 +11,7 @@ This option will enable non-destructive constant decomposition and various state The following child options are available: +- `Lift Constants`: Percentage of function constants to lift into a lookup table. 0 is disabled while 100 is all constants. - `Mangle Numbers`: Replaces number constants with a randomized binary expression which evaluates to that number. - `Mangle Strings`: Performs light obfuscation of string constants. - `Mangle Self-calls`: Replaces `x:foo()` with `x.foo(x)`.