13.5 Disable Format for Code SectionsWhen format is disabled, a code section is completely ignored, that is it is not formatted, nor it contributes to formatting. type color_t : [
RED = 0xFF0000,
GREEN = 0x00FF00,
// @formatter:off
BLUE = 0x0000FF,
YELLOW = 0xFFFF00,
// @formatter:on
MAGENTA = 0xFF00FF
];
type color_t : [
RED = 0xFF0000,
GREEN = 0x00FF00,
BLUE = 0x0000FF,
YELLOW = 0xFFFF00, -- @formatter:skip
MAGENTA = 0xFF00FF
];
|