summaryrefslogtreecommitdiff
path: root/src/GF/JavaScript/JS.cf
diff options
context:
space:
mode:
authormeza <meza@student.chalmers.se>2008-04-29 13:05:24 +0000
committermeza <meza@student.chalmers.se>2008-04-29 13:05:24 +0000
commit314f147bff04c3b02e0f43b77e4b7a3f1fd9e433 (patch)
treee4aef58509c94c4b578a1a715f550beb621c9fed /src/GF/JavaScript/JS.cf
parentba6a2b5d6ec8d22136f1a5e985a8f77e70379c2c (diff)
JS.cf : Changed the JS grammar to support strings as property names in objects. Changed pretty much all the files in the same folder as well as GFCCToJS.hs and SISR.hs to reflect the changes.
Diffstat (limited to 'src/GF/JavaScript/JS.cf')
-rw-r--r--src/GF/JavaScript/JS.cf7
1 files changed, 5 insertions, 2 deletions
diff --git a/src/GF/JavaScript/JS.cf b/src/GF/JavaScript/JS.cf
index 58233ed74..fe31a2074 100644
--- a/src/GF/JavaScript/JS.cf
+++ b/src/GF/JavaScript/JS.cf
@@ -48,5 +48,8 @@ define eseq1 x xs = ESeq (x:xs);
separator Expr "," ;
coercions Expr 16 ;
-Prop. Property ::= Ident ":" Expr ;
-separator Property "," ; \ No newline at end of file
+Prop. Property ::= PropertyName ":" Expr ;
+separator Property "," ;
+
+IdentPropName. PropertyName ::= Ident ;
+StringPropName. PropertyName ::= String ;