-
Notifications
You must be signed in to change notification settings - Fork 446
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Allow for decoding of non-quoted object identifier strings in a non-strict decode mode #37
Comments
Updated by mikechambers on 2008-07-02T16:40:54 Original ticket set status to Accepted (we converted to open) |
Updated by darron.schall on 2008-10-23T02:15:29 This is a strict mode / non-strict mode change. When strict mode is turned off we It is not valid JSON to have object identifiers not have quotes. However, a lot of So, when strict mode is ON, a parse error should be generated as is the current behavior. When strict mode is OFF, we should process the identifier like it was a string even Removed label Type-Defect |
Updated by mikechambers on 2008-11-07T19:28:43 Original ticket set owner to darron.schall |
Updated by darron.schall on 2008-12-10T16:46:17 Issue 83 has been merged into this issue. |
Updated by davidsarah.hopwood on 2009-06-04T22:16:23 I'm interested in which JSON libraries you know of that emit unquoted property |
Updated by [email protected] on 2009-07-12T01:07:34 Has this issue been resolved yet? Been expecting it to be resolved since last Winter |
Updated by darron.schall on 2009-07-13T02:55:58 @evan - No, this has not been resolved yet. However, as long as you're using properly formatted JSON you I'm still debating if this is really worth implementing because it goes against JSON syntax (per es5 discussions). |
Updated by [email protected] on 2009-07-13T14:21:08 @darron - Oh ok, thank you very much for your prompt reply. See we are working with Any chance we may re-consider? What options do you there are? |
I am working on modifying the com.adobe.serialization.json.JSON* classes to resolve this issue. Would you like the code? |
Originally filed by marcinhow on 2007-09-04T12:50:55
What steps will reproduce the problem?
[{width:50,attrname:"NME_NIVEL_FORM",fieldtype:"string"},
{width:4,attrname:"ANO_FORM",fieldtype:"string"}]},rowdata:
[["Doutorado","2006"]],version:2.0}]]';
What is the expected output? What do you see instead?
I would like of one array:
private var array: Array = [[{metadata:{fields:
[{width:50,attrname:"NME_NIVEL_FORM",fieldtype:"string"},
{width:4,attrname:"ANO_FORM",fieldtype:"string"}]},rowdata:
[["Doutorado","2006"]],version:2.0}]];
What version of the product are you using? On what operating system?
0.9
The text was updated successfully, but these errors were encountered: