Explorar el Código

Fixed a typo in smalltalk.pegjs

Nicolas Petton hace 13 años
padre
commit
76d10c13a5
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  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()