Skip to content

Commit

Permalink
fix: use ; as engine separator
Browse files Browse the repository at this point in the history
Signed-off-by: Charles-Edouard Brétéché <charles.edouard@nirmata.com>
  • Loading branch information
eddycharly committed Sep 19, 2024
1 parent e353646 commit 417ebc7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/syntax/expression/expression.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ var (
foreachRegex = regexp.MustCompile(`^~(\w+)?\.(.*)`)
bindingRegex = regexp.MustCompile(`(.*)\s*->\s*(\w+)$`)
escapeRegex = regexp.MustCompile(`^\\(.+)\\$`)
engineRegex = regexp.MustCompile(`^\((?:(\w+):)?(.+)\)$`)
engineRegex = regexp.MustCompile(`^\((?:(\w+);)?(.+)\)$`)
)

const (
Expand Down

0 comments on commit 417ebc7

Please sign in to comment.