-
Notifications
You must be signed in to change notification settings - Fork 34
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: Handle parsing corner cases (#309)
A block with a single or expression needs to be treated as a comprehension instead of a set/array with 1 item. e.g.: {1 | 1 }, [2 | foo] Allow successfully parsing object comprehensions as rule body x if { 1:2 | 1 } fixes #306, fixes #307 Signed-off-by: Anand Krishnamoorthi <[email protected]>
- Loading branch information
Showing
3 changed files
with
63 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
# Copyright (c) Microsoft Corporation. | ||
# Licensed under the MIT License. | ||
|
||
cases: | ||
- note: treat { 1 | 1 } as comprehension | ||
data: {} | ||
modules: | ||
- | | ||
package test | ||
import rego.v1 | ||
x if { 1 | 1 } | ||
y := { 1 | 1 } | ||
z := { (1) | 1} | ||
# Parsed as a set | ||
a := { ({1} | {2}) } | ||
b := v if { { 1 | 1 } = v } | ||
query: data.test | ||
want_result: | ||
x: true | ||
y: | ||
set!: [1] | ||
z: | ||
set!: [1] | ||
a: | ||
set!: | ||
- set!: [1, 2] | ||
b: | ||
set!: [1] | ||
|
||
- note: rule body is object comprehension | ||
data: {} | ||
modules: | ||
- | | ||
package test | ||
import future.keywords | ||
x if { 1:2 | some p in [1,2] } | ||
y := 2 if { 1:2 | some p in [1,2] } | ||
query: data.test | ||
want_result: | ||
x: true | ||
y: 2 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -227,3 +227,4 @@ v1/uuid | |
v1/varreferences | ||
v1/virtualdocs | ||
v1/walkbuiltin | ||
v1/withkeyword |