| 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 #if !defined(DART_IO_DISABLED) | |
| 6 | |
| 7 #include "bin/directory.h" | 5 #include "bin/directory.h" |
| 8 | 6 |
| 9 #include "bin/dartutils.h" | 7 #include "bin/dartutils.h" |
| 10 #include "bin/log.h" | 8 #include "bin/log.h" |
| 11 #include "include/dart_api.h" | 9 #include "include/dart_api.h" |
| 12 #include "platform/assert.h" | 10 #include "platform/assert.h" |
| 13 | 11 |
| 14 namespace dart { | 12 namespace dart { |
| 15 namespace bin { | 13 namespace bin { |
| 16 | 14 |
| (...skipping 443 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 460 listing->HandleError(); | 458 listing->HandleError(); |
| 461 listing->HandleDone(); | 459 listing->HandleDone(); |
| 462 } else { | 460 } else { |
| 463 while (ListNext(listing)) { | 461 while (ListNext(listing)) { |
| 464 } | 462 } |
| 465 } | 463 } |
| 466 } | 464 } |
| 467 | 465 |
| 468 } // namespace bin | 466 } // namespace bin |
| 469 } // namespace dart | 467 } // namespace dart |
| 470 | |
| 471 #endif // !defined(DART_IO_DISABLED) | |
| OLD | NEW |