Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'deps/v8/src/compiler/node.h')
-rw-r--r--deps/v8/src/compiler/node.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/deps/v8/src/compiler/node.h b/deps/v8/src/compiler/node.h
index 41dca441f20..8072bab46eb 100644
--- a/deps/v8/src/compiler/node.h
+++ b/deps/v8/src/compiler/node.h
@@ -144,8 +144,9 @@ class V8_EXPORT_PRIVATE Node final {
// Returns true if {owner1} and {owner2} are the only users of {this} node.
bool OwnedBy(Node const* owner1, Node const* owner2) const;
- void Print() const;
- void Print(std::ostream&) const;
+ void Print() const { Print(1); }
+ void Print(int depth) const;
+ void Print(std::ostream&, int depth = 1) const;
private:
struct Use;