kahntang / as3corelib

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

JSONTokenizer.as #69

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
the function isWhiteSpace ignores \r

Currently looks like this:

private function isWhiteSpace( ch:String ):Boolean {
  return ( ch == ' ' || ch == '\t' || ch == '\n' );
}

Should look like this:

private function isWhiteSpace( ch:String ):Boolean {
  return ( ch == ' ' || ch == '\t' || ch == '\n' || ch == '\r' );
}

Original issue reported on code.google.com by googlean...@donorschoose.org on 9 Sep 2008 at 10:22

GoogleCodeExporter commented 9 years ago
Thanks for the bug report.  This was added as of revision 64.

Original comment by darron.schall on 6 Nov 2008 at 8:20