now the PGF to JavaScript convertor uses PMCFG

This commit is contained in:
krasimir
2009-12-14 09:53:53 +00:00
parent f85232947e
commit a7811d1199
3 changed files with 24 additions and 41 deletions

View File

@@ -56,5 +56,6 @@ data Property =
data PropertyName =
IdentPropName Ident
| StringPropName String
| IntPropName Int
deriving (Eq,Ord,Show)

View File

@@ -164,6 +164,4 @@ instance Print PropertyName where
prt i e = case e of
IdentPropName id -> prPrec i 0 (concatD [prt 0 id])
StringPropName str -> prPrec i 0 (concatD [prt 0 str])
IntPropName n -> prPrec i 0 (concatD [prt 0 n])