summaryrefslogtreecommitdiff
path: root/src/compiler/GF/Compile/Compute/Value.hs
diff options
context:
space:
mode:
authorkr.angelov <kr.angelov@gmail.com>2013-11-12 09:54:57 +0000
committerkr.angelov <kr.angelov@gmail.com>2013-11-12 09:54:57 +0000
commit0095119ec09b394332a23ab7cc16c0009c3f162a (patch)
treec2c19ef36c3c04ae608ae93a9131ee1e71957c98 /src/compiler/GF/Compile/Compute/Value.hs
parentb111b476a75577a5b21d1d498975cbb2eeed9324 (diff)
added Predef.SOFT_BIND. This special token allows zero or more spaces between ordinary tokens. It is also used in the English RGL to attach the commas to the previous word.
Diffstat (limited to 'src/compiler/GF/Compile/Compute/Value.hs')
-rw-r--r--src/compiler/GF/Compile/Compute/Value.hs3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/compiler/GF/Compile/Compute/Value.hs b/src/compiler/GF/Compile/Compute/Value.hs
index 21a3eb20e..8f47ad184 100644
--- a/src/compiler/GF/Compile/Compute/Value.hs
+++ b/src/compiler/GF/Compile/Compute/Value.hs
@@ -51,5 +51,6 @@ data Predefined = Drop | Take | Tk | Dp | EqStr | Occur | Occurs | ToUpper
{- | Show | Read | ToStr | MapStr | EqVal -}
| Error
-- Canonical values below:
- | PBool | PFalse | PTrue | Int | Ints | NonExist | BIND
+ | PBool | PFalse | PTrue | Int | Ints | NonExist
+ | BIND | SOFT_BIND
deriving (Show,Eq,Ord,Ix,Bounded,Enum)