kolombet / maashaack

Automatically exported from code.google.com/p/maashaack
0 stars 0 forks source link

Fix eden use E uppercase in Numbers #201

Open GoogleCodeExporter opened 8 years ago

GoogleCodeExporter commented 8 years ago
For the moment only the "e" character is check, we must check the 'E' character.

Example :

{{{

import system.eden ;

trace( eden.deserialize(".5e-1") ) ; // 0.5
trace( eden.deserialize(".5E-1") ) ; // [object Object]

}}}

Original issue reported on code.google.com by ekamel...@gmail.com on 12 Jun 2012 at 8:32