mirror of
https://github.com/NixOS/nix.git
synced 2025-11-09 03:56:01 +01:00
libexpr: Explicitly define ExprOpUpdate
This commit is contained in:
parent
e282175f48
commit
b7c6cf900f
1 changed files with 5 additions and 1 deletions
|
|
@ -614,9 +614,13 @@ MakeBinOp(ExprOpNEq, "!=");
|
||||||
MakeBinOp(ExprOpAnd, "&&");
|
MakeBinOp(ExprOpAnd, "&&");
|
||||||
MakeBinOp(ExprOpOr, "||");
|
MakeBinOp(ExprOpOr, "||");
|
||||||
MakeBinOp(ExprOpImpl, "->");
|
MakeBinOp(ExprOpImpl, "->");
|
||||||
MakeBinOp(ExprOpUpdate, "//");
|
|
||||||
MakeBinOp(ExprOpConcatLists, "++");
|
MakeBinOp(ExprOpConcatLists, "++");
|
||||||
|
|
||||||
|
struct ExprOpUpdate : Expr
|
||||||
|
{
|
||||||
|
MakeBinOpMembers(ExprOpUpdate, "//")
|
||||||
|
};
|
||||||
|
|
||||||
struct ExprConcatStrings : Expr
|
struct ExprConcatStrings : Expr
|
||||||
{
|
{
|
||||||
PosIdx pos;
|
PosIdx pos;
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue