Skip to content

Commit

Permalink
no-nesting bit support added to Condition
Browse files Browse the repository at this point in the history
  • Loading branch information
JesseCoretta committed Aug 25, 2023
1 parent ae8f7a4 commit 624100c
Show file tree
Hide file tree
Showing 6 changed files with 233 additions and 108 deletions.
4 changes: 2 additions & 2 deletions cfg.go
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ const (
fwdidx // 32 // enable forward index support
joinl // 64 // list joining value
ronly // 128 // stack is read-only
nnest // 256 // stack does not allow stack/stack alias instances as slice members
nnest // 256 // stack/condition does not allow stack/stack alias instances as slice members or expression value
_ // 512
_ // 1024
_ // 2048
Expand Down Expand Up @@ -150,7 +150,7 @@ func (r *nodeConfig) kind() (kind string) {
}

switch r.typ {
case and, or, not, list:
case and, or, not, list, cond:
kind = r.typ.String()
}

Expand Down
Loading

0 comments on commit 624100c

Please sign in to comment.