| OLD | NEW |
| 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 2 // for details. All rights reserved. Use of this source code is governed by a | 2 // for details. All rights reserved. Use of this source code is governed by a |
| 3 // BSD-style license that can be found in the LICENSE file. | 3 // BSD-style license that can be found in the LICENSE file. |
| 4 | 4 |
| 5 #library('jsonTest'); | 5 #library('jsonTest'); |
| 6 | 6 |
| 7 #import('dart:json'); | 7 #import('dart:json'); |
| 8 | 8 |
| 9 main() { | 9 main() { |
| 10 testEscaping(); | 10 testEscaping(); |
| (...skipping 87 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 98 Expect.stringEquals('"\\u001d"', JSON.stringify('\u001d')); | 98 Expect.stringEquals('"\\u001d"', JSON.stringify('\u001d')); |
| 99 Expect.stringEquals('"\\u001e"', JSON.stringify('\u001e')); | 99 Expect.stringEquals('"\\u001e"', JSON.stringify('\u001e')); |
| 100 Expect.stringEquals('"\\u001f"', JSON.stringify('\u001f')); | 100 Expect.stringEquals('"\\u001f"', JSON.stringify('\u001f')); |
| 101 Expect.stringEquals('"\\\""', JSON.stringify('"')); | 101 Expect.stringEquals('"\\\""', JSON.stringify('"')); |
| 102 Expect.stringEquals('"\\\\"', JSON.stringify('\\')); | 102 Expect.stringEquals('"\\\\"', JSON.stringify('\\')); |
| 103 Expect.stringEquals('"Got \\b, \\f, \\n, \\r, \\t, \\u0000, \\\\, and \\"."', | 103 Expect.stringEquals('"Got \\b, \\f, \\n, \\r, \\t, \\u0000, \\\\, and \\"."', |
| 104 JSON.stringify('Got \b, \f, \n, \r, \t, \u0000, \\, and ".')); | 104 JSON.stringify('Got \b, \f, \n, \r, \t, \u0000, \\, and ".')); |
| 105 Expect.stringEquals('"Got \\b\\f\\n\\r\\t\\u0000\\\\\\"."', | 105 Expect.stringEquals('"Got \\b\\f\\n\\r\\t\\u0000\\\\\\"."', |
| 106 JSON.stringify('Got \b\f\n\r\t\u0000\\".')); | 106 JSON.stringify('Got \b\f\n\r\t\u0000\\".')); |
| 107 } | 107 } |
| OLD | NEW |