preprocess
preprocess copied to clipboard
Opposite of @exclude (or !> for js/coffee files)
It'd be great if there could be a way to explicitly include a line only after compiling:
# @include
# productionOnlyMethod()
# @endinclude
For js it is probably possible.
/* @if true **
productionOnlyMethod()
/* @endif */
Or, if it's only a single line:
// @echo 'productionOnlyMethod()'