fjsc: remove extraneous semicolons in compiled output

darcs
chris.double 2006-12-15 06:18:01 +00:00
parent fba42655be
commit e68593d9e5
1 changed files with 2 additions and 3 deletions

View File

@ -53,7 +53,6 @@ LAZY: 'identifier-middle' ( -- parser )
and and and and and and and and
] satisfy <+> ;
USE: prettyprint
LAZY: 'identifier' ( -- parser )
'identifier-ends'
'identifier-middle' <&> [ first2 append ] <@
@ -100,7 +99,7 @@ M: ast-number (literal)
M: ast-number (compile)
"factor.data_stack.push(" ,
(literal)
");" , ;
")" , ;
M: ast-string (literal)
"'" ,
@ -110,7 +109,7 @@ M: ast-string (literal)
M: ast-string (compile)
"factor.data_stack.push(" ,
(literal)
");" , ;
")" , ;
M: ast-identifier (literal)
"factor.words[\"" , ast-identifier-value , "\"]" , ;