diff options
Diffstat (limited to 'deps/v8/src/ast/prettyprinter.h')
-rw-r--r-- | deps/v8/src/ast/prettyprinter.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/deps/v8/src/ast/prettyprinter.h b/deps/v8/src/ast/prettyprinter.h index 4b939c7d17..e26d98e7a3 100644 --- a/deps/v8/src/ast/prettyprinter.h +++ b/deps/v8/src/ast/prettyprinter.h @@ -133,8 +133,11 @@ class AstPrinter final : public AstVisitor<AstPrinter> { const char* prefix = ""); void PrintObjectProperties( const ZonePtrList<ObjectLiteral::Property>* properties); + void PrintClassProperty(ClassLiteral::Property* property); void PrintClassProperties( const ZonePtrList<ClassLiteral::Property>* properties); + void PrintClassStaticElements( + const ZonePtrList<ClassLiteral::StaticElement>* static_elements); void inc_indent() { indent_++; } void dec_indent() { indent_--; } |