| 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 program testing nested comments | 4 // Dart test program testing nested comments |
| 5 | 5 |
| 6 // /* nested comment */ | 6 // /* nested comment */ |
| 7 /*// nested comment */ | 7 /*// nested comment */ |
| 8 /*/* nested comment */*/ | 8 /*/* nested comment */*/ |
| 9 /* entire function | 9 /* entire function |
| 10 void main() { | 10 void main() { |
| 11 /* nested comment */ | 11 /* nested comment */ |
| 12 Expect.isTrue(false); // nested | 12 Expect.isTrue(false); // nested |
| 13 } | 13 } |
| 14 */ | 14 */ |
| 15 | 15 |
| 16 /** | 16 /** |
| 17 test documentation | 17 test documentation |
| 18 /* nested comment */ | 18 /* nested comment */ |
| 19 */ | 19 */ |
| 20 main() { | 20 main() { |
| 21 Expect.isTrue(true); | 21 Expect.isTrue(true); |
| 22 } | 22 } |
| OLD | NEW |