OLD | NEW |
1 // Copyright (c) 2014, the Fletch project authors. Please see the AUTHORS file | 1 // Copyright (c) 2014, the Dartino 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.md file. | 3 // BSD-style license that can be found in the LICENSE.md file. |
4 | 4 |
5 #include "src/vm/heap.h" | 5 #include "src/vm/heap.h" |
6 | 6 |
7 #include <stdio.h> | 7 #include <stdio.h> |
8 | 8 |
9 #include "src/shared/assert.h" | 9 #include "src/shared/assert.h" |
10 #include "src/shared/flags.h" | 10 #include "src/shared/flags.h" |
11 #include "src/vm/object.h" | 11 #include "src/vm/object.h" |
(...skipping 326 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
338 filename, current); | 338 filename, current); |
339 } | 339 } |
340 } | 340 } |
341 } | 341 } |
342 fclose(fp); | 342 fclose(fp); |
343 #endif // __linux | 343 #endif // __linux |
344 } | 344 } |
345 #endif // DEBUG | 345 #endif // DEBUG |
346 | 346 |
347 } // namespace fletch | 347 } // namespace fletch |
OLD | NEW |