Skip to content

Commit

Permalink
Fixed to_entries[]
Browse files Browse the repository at this point in the history
  • Loading branch information
mikefarah committed Dec 12, 2023
1 parent eff7d99 commit 4cf123f
Show file tree
Hide file tree
Showing 5 changed files with 702 additions and 639 deletions.
2 changes: 1 addition & 1 deletion pkg/yqlib/lexer_participle.go
Original file line number Diff line number Diff line change
Expand Up @@ -298,7 +298,7 @@ func opTokenWithPrefs(opType *operationType, assignOpType *operationType, prefer
if assignOpType != nil {
assign = &Operation{OperationType: assignOpType, Value: assignOpType.Type, StringValue: value, Preferences: preferences}
}
return &token{TokenType: operationToken, Operation: op, AssignOperation: assign}, nil
return &token{TokenType: operationToken, Operation: op, AssignOperation: assign, CheckForPostTraverse: op.OperationType.CheckForPostTraverse}, nil
}
}

Expand Down
Loading

0 comments on commit 4cf123f

Please sign in to comment.