Bug fixes
$$escape
wasn't hygienic like it was shown in the docs.
- Expanding of object / array literal access is a lot more sparing, and will always expand to the correct thing (never the object / array literal expression itself).
- Fixed a lot of other little rare errors.
Changes
- The
$$ident
macro will now use hygienic values if possible:
function $example() {
const val = 15;
console.log($$ident!(val));
}
$example!();
// Now transpiles to:
const val_1 = 15;
console.log(val_1);
Additions
- Macros can now have statement as their parameters by using the macro as a label. You can read more about this feature in the docs.
// Wraps a block in a try/catch, ignoring the error
function $TrySilence(info: BlockLabel) {
try {
$$inlineFunc!(info.statement);
} catch(err) {};
}
if (...) TrySilence: {
//...
}
// Transpiles to:
if (...) {
try {
//...
}
catch (err) { };
}