mirror of
https://github.com/NixOS/nix
synced 2025-06-27 21:01:16 +02:00
* Removed the `~' operator.
This commit is contained in:
parent
c172274e17
commit
a5ece7d016
3 changed files with 1 additions and 3 deletions
|
@ -373,7 +373,6 @@ expr_op
|
|||
| expr_op OR expr_op { $$ = makeOpOr($1, $3); }
|
||||
| expr_op IMPL expr_op { $$ = makeOpImpl($1, $3); }
|
||||
| expr_op UPDATE expr_op { $$ = makeOpUpdate($1, $3); }
|
||||
| expr_op '~' expr_op { $$ = makeSubPath($1, $3); }
|
||||
| expr_op '?' ID { $$ = makeOpHasAttr($1, $3); }
|
||||
| expr_op '+' expr_op { $$ = makeConcatStrings(ATmakeList2($1, $3)); }
|
||||
| expr_op CONCAT expr_op { $$ = makeOpConcat($1, $3); }
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue