| OLD | NEW |
| (Empty) |
| 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 | |
| 3 // BSD-style license that can be found in the LICENSE file. | |
| 4 | |
| 5 // This file is linked into the dart executable when it has a snapshot | |
| 6 // linked into it. | |
| 7 | |
| 8 #include <inttypes.h> | |
| 9 #include <stdint.h> | |
| 10 #include <stddef.h> | |
| 11 | |
| 12 namespace mojo { | |
| 13 namespace dart { | |
| 14 | |
| 15 // The string on the next line will be filled in with the contents of the | |
| 16 // generated snapshot binary file. | |
| 17 // This string forms the content of a snapshot which is loaded in by dart. | |
| 18 static const uint8_t snapshot_buffer_[] = { % s}; | |
| 19 const uint8_t* snapshot_buffer = snapshot_buffer_; | |
| 20 | |
| 21 } // namespace dart | |
| 22 } // namespace mojo | |
| OLD | NEW |