| 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 388 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 399 void SkipCanonicalNameReference(); | 399 void SkipCanonicalNameReference(); |
| 400 void SkipDartType(); | 400 void SkipDartType(); |
| 401 void SkipOptionalDartType(); | 401 void SkipOptionalDartType(); |
| 402 void SkipInterfaceType(bool simple); | 402 void SkipInterfaceType(bool simple); |
| 403 void SkipFunctionType(bool simple); | 403 void SkipFunctionType(bool simple); |
| 404 void SkipListOfExpressions(); | 404 void SkipListOfExpressions(); |
| 405 void SkipListOfDartTypes(); | 405 void SkipListOfDartTypes(); |
| 406 void SkipListOfStrings(); | 406 void SkipListOfStrings(); |
| 407 void SkipListOfVariableDeclarations(); | 407 void SkipListOfVariableDeclarations(); |
| 408 void SkipTypeParametersList(); | 408 void SkipTypeParametersList(); |
| 409 void SkipInitializer(); |
| 409 void SkipExpression(); | 410 void SkipExpression(); |
| 410 void SkipStatement(); | 411 void SkipStatement(); |
| 411 void SkipFunctionNode(); | 412 void SkipFunctionNode(); |
| 412 void SkipName(); | 413 void SkipName(); |
| 413 void SkipArguments(); | 414 void SkipArguments(); |
| 414 void SkipVariableDeclaration(); | 415 void SkipVariableDeclaration(); |
| 415 void SkipLibraryCombinator(); | 416 void SkipLibraryCombinator(); |
| 416 void SkipLibraryDependency(); | 417 void SkipLibraryDependency(); |
| 417 void SkipLibraryPart(); | 418 void SkipLibraryPart(); |
| 418 void SkipLibraryTypedef(); | 419 void SkipLibraryTypedef(); |
| (...skipping 1134 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1553 private: | 1554 private: |
| 1554 StreamingFlowGraphBuilder* builder_; | 1555 StreamingFlowGraphBuilder* builder_; |
| 1555 intptr_t next_read_; | 1556 intptr_t next_read_; |
| 1556 }; | 1557 }; |
| 1557 | 1558 |
| 1558 } // namespace kernel | 1559 } // namespace kernel |
| 1559 } // namespace dart | 1560 } // namespace dart |
| 1560 | 1561 |
| 1561 #endif // !defined(DART_PRECOMPILED_RUNTIME) | 1562 #endif // !defined(DART_PRECOMPILED_RUNTIME) |
| 1562 #endif // RUNTIME_VM_KERNEL_BINARY_FLOWGRAPH_H_ | 1563 #endif // RUNTIME_VM_KERNEL_BINARY_FLOWGRAPH_H_ |
| OLD | NEW |