From 29c209addab78b7aa358ce2c82876a1d83dee01b Mon Sep 17 00:00:00 2001 From: Sei Lisa Date: Mon, 30 Mar 2015 02:41:31 +0200 Subject: [PATCH] Include function and state names in "Shrinking identifiers" --- index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.html b/index.html index 7f2bd1a..0642e28 100644 --- a/index.html +++ b/index.html @@ -338,7 +338,7 @@ default

Shrinking Identifiers

-

Long variable and parameter names are nice and readable, but when used as part of the globals or as function parameters, each character in the identifier takes at least one byte of code memory. In large programs, this can add up to a significant amount. This option replaces global and parameter identifiers with the shortest possible ones, also reusing as many as it can. The savings from this alone can be very significant in programs with a large number of globals or states.

+

Long variable and parameter names are nice and readable, but when used as part of the globals or as function parameters, or in function or state names, each character in the identifier takes at least one byte of code memory. In large programs, this can add up to a significant amount. This option replaces global (including functions and states) and parameter identifiers with the shortest possible ones, also reusing as many as it can. The savings from this alone can be very significant in programs with a large number of globals or states.

Floats