Sfoglia il codice sorgente

Fixed a typo in smalltalk.pegjs

Nicolas Petton 13 anni fa
parent
commit
76d10c13a5
1 ha cambiato i file con 1 aggiunte e 1 eliminazioni
  1. 1 1
      js/parser.pegjs

+ 1 - 1
js/parser.pegjs

@@ -13,7 +13,7 @@ string         = ['] val:(("''" {return "'"} / [^'])*) ['] {
 
 symbol         = "#"val:[a-zA-Z0-9]* {
 		  return smalltalk.ValueNode._new()
-               	   	._value_('smalltalk.symbolFor(val.join("").replace(/\"/ig, '"')))
+               	   	._value_(smalltalk.symbolFor(val.join("").replace(/\"/ig, '"')))
                	 }
 number         = n:(float / integer) {
 		  return smalltalk.ValueNode._new()