// Copyright 2015 the V8 project authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef V8_COMPILER_ALL_NODES_H_ #define V8_COMPILER_ALL_NODES_H_ #include "src/compiler/node.h" #include "src/utils/bit-vector.h" namespace v8 { namespace internal { namespace compiler { // A helper utility that traverses the graph and gathers all nodes reachable // from end. class AllNodes { … }; } // namespace compiler } // namespace internal } // namespace v8 #endif // V8_COMPILER_ALL_NODES_H_