| OLD | NEW |
| 1 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2011, 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 // Dart test for reading escape sequences in string literals | 4 // Dart test for reading escape sequences in string literals |
| 5 | 5 |
| 6 import "package:expect/expect.dart"; |
| 7 |
| 6 class CharEscapeTest { | 8 class CharEscapeTest { |
| 7 static testMain() { | 9 static testMain() { |
| 8 var x00 = "\x00"; | 10 var x00 = "\x00"; |
| 9 var u0000 = "\u0000"; | 11 var u0000 = "\u0000"; |
| 10 var v0 = "\u{0}"; | 12 var v0 = "\u{0}"; |
| 11 var v00 = "\u{00}"; | 13 var v00 = "\u{00}"; |
| 12 var v000 = "\u{000}"; | 14 var v000 = "\u{000}"; |
| 13 var v0000 = "\u{0000}"; | 15 var v0000 = "\u{0000}"; |
| 14 var v00000 = "\u{00000}"; | 16 var v00000 = "\u{00000}"; |
| 15 var v000000 = "\u{000000}"; | 17 var v000000 = "\u{000000}"; |
| (...skipping 506 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 522 Expect.equals("\W", "W"); | 524 Expect.equals("\W", "W"); |
| 523 Expect.equals("\X", "X"); | 525 Expect.equals("\X", "X"); |
| 524 Expect.equals("\Y", "Y"); | 526 Expect.equals("\Y", "Y"); |
| 525 Expect.equals("\Z", "Z"); | 527 Expect.equals("\Z", "Z"); |
| 526 } | 528 } |
| 527 } | 529 } |
| 528 | 530 |
| 529 main() { | 531 main() { |
| 530 CharEscapeTest.testMain(); | 532 CharEscapeTest.testMain(); |
| 531 } | 533 } |
| OLD | NEW |