diff options
Diffstat (limited to 'frontend/syntax.icl')
-rw-r--r-- | frontend/syntax.icl | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/frontend/syntax.icl b/frontend/syntax.icl index 8d98cc5..102b743 100644 --- a/frontend/syntax.icl +++ b/frontend/syntax.icl @@ -444,8 +444,10 @@ where instance <<< SelectorKind where (<<<) file NormalSelector = file <<< "." - (<<<) file NormalSelectorUniqueElementResult = file <<< "!*" (<<<) file UniqueSelector = file <<< "!" + (<<<) file UniqueSelectorUniqueElementResult = file <<< "!*" + (<<<) file UniqueSingleArraySelector = file <<< "!" + (<<<) file UniqueSingleArraySelectorUniqueElementResult = file <<< "!*" instance <<< Selection where |