| OLD | NEW |
| 1 // Copyright (c) 2017, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2017, 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 #ifndef RUNTIME_VM_KERNEL_BINARY_FLOWGRAPH_H_ | 5 #ifndef RUNTIME_VM_KERNEL_BINARY_FLOWGRAPH_H_ |
| 6 #define RUNTIME_VM_KERNEL_BINARY_FLOWGRAPH_H_ | 6 #define RUNTIME_VM_KERNEL_BINARY_FLOWGRAPH_H_ |
| 7 | 7 |
| 8 #if !defined(DART_PRECOMPILED_RUNTIME) | 8 #if !defined(DART_PRECOMPILED_RUNTIME) |
| 9 | 9 |
| 10 #include <map> | 10 #include <map> |
| (...skipping 384 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 395 // If asked to read a compound field (e.g. an expression) it will be skipped. | 395 // If asked to read a compound field (e.g. an expression) it will be skipped. |
| 396 class LibraryHelper { | 396 class LibraryHelper { |
| 397 public: | 397 public: |
| 398 enum Field { | 398 enum Field { |
| 399 kFlags, | 399 kFlags, |
| 400 kCanonicalName, | 400 kCanonicalName, |
| 401 kName, | 401 kName, |
| 402 kSourceUriIndex, | 402 kSourceUriIndex, |
| 403 kAnnotations, | 403 kAnnotations, |
| 404 kDependencies, | 404 kDependencies, |
| 405 kAdditionalExports, | |
| 406 kParts, | 405 kParts, |
| 407 kTypedefs, | 406 kTypedefs, |
| 408 kClasses, | 407 kClasses, |
| 409 kToplevelField, | 408 kToplevelField, |
| 410 kToplevelProcedures, | 409 kToplevelProcedures, |
| 411 kEnd, | 410 kEnd, |
| 412 }; | 411 }; |
| 413 | 412 |
| 414 enum Flag { | 413 enum Flag { |
| 415 kExternal = 1, | 414 kExternal = 1, |
| (...skipping 716 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1132 const uint8_t* saved_raw_buffer_; | 1131 const uint8_t* saved_raw_buffer_; |
| 1133 const TypedData* saved_typed_data_; | 1132 const TypedData* saved_typed_data_; |
| 1134 intptr_t saved_offset_; | 1133 intptr_t saved_offset_; |
| 1135 }; | 1134 }; |
| 1136 | 1135 |
| 1137 } // namespace kernel | 1136 } // namespace kernel |
| 1138 } // namespace dart | 1137 } // namespace dart |
| 1139 | 1138 |
| 1140 #endif // !defined(DART_PRECOMPILED_RUNTIME) | 1139 #endif // !defined(DART_PRECOMPILED_RUNTIME) |
| 1141 #endif // RUNTIME_VM_KERNEL_BINARY_FLOWGRAPH_H_ | 1140 #endif // RUNTIME_VM_KERNEL_BINARY_FLOWGRAPH_H_ |
| OLD | NEW |