Skip to content

Releases: nix-community/rnix-parser

v0.14.0

16 Feb 18:49
0472081

Choose a tag to compare

Fixed

  • Fix absolute path interpolation starting with /${ failing to parse (#182, from @imxyy1soope1).

Breaking Changes

  • __curPos is now a distinct node type. __curPos is a Nix keyword that evaluates to an attribute set containing the file, line, and column where it appears. Lix documents this as a keyword. It was previously represented as NODE_IDENT, but is now parsed as NODE_CUR_POS with a
    corresponding TOKEN_CUR_POS token kind (from @3timeslazy).