summaryrefslogtreecommitdiff
path: root/src-3.0/GF/GFCC/GFCCtoJS.hs
diff options
context:
space:
mode:
authorkr.angelov <kr.angelov@chalmers.se>2008-05-23 09:54:02 +0000
committerkr.angelov <kr.angelov@chalmers.se>2008-05-23 09:54:02 +0000
commit4c14927914ef2ba97aee2d2ab99b48daffdd68bc (patch)
treeab89a461ff774232f5e2b98f8a216f6faa4f4c25 /src-3.0/GF/GFCC/GFCCtoJS.hs
parent6027c10a0ce4b9c6282276125876092ffadac027 (diff)
remove the deprecated RP constructor in GFCC
Diffstat (limited to 'src-3.0/GF/GFCC/GFCCtoJS.hs')
-rw-r--r--src-3.0/GF/GFCC/GFCCtoJS.hs1
1 files changed, 0 insertions, 1 deletions
diff --git a/src-3.0/GF/GFCC/GFCCtoJS.hs b/src-3.0/GF/GFCC/GFCCtoJS.hs
index d32133ab2..91dd89b09 100644
--- a/src-3.0/GF/GFCC/GFCCtoJS.hs
+++ b/src-3.0/GF/GFCC/GFCCtoJS.hs
@@ -69,7 +69,6 @@ term2js n l t = f t
D.F f -> JS.ECall (JS.EMember (JS.EIndex (JS.EMember (JS.EVar $ JS.Ident n) (JS.Ident "concretes")) (JS.EStr l)) (JS.Ident "rule")) [JS.EStr (prCId f), JS.EVar children]
D.FV xs -> new "Variants" (map f xs)
D.W str x -> new "Suffix" [JS.EStr str, f x]
- D.RP x y -> new "Rp" [f x, f y]
D.TM _ -> new "Meta" []
tokn2js :: D.Tokn -> JS.Expr