Index: src/ast/prettyprinter.cc |
diff --git a/src/ast/prettyprinter.cc b/src/ast/prettyprinter.cc |
index 944cfaa92902e04153825e7ea45b758db2a14098..0bd9554593bb799301d9db42afec587ac0a4a6aa 100644 |
--- a/src/ast/prettyprinter.cc |
+++ b/src/ast/prettyprinter.cc |
@@ -915,6 +915,9 @@ void AstPrinter::PrintClassProperties( |
case ClassLiteral::Property::SETTER: |
prop_kind = "SETTER"; |
break; |
+ case ClassLiteral::Property::FIELD: |
+ prop_kind = "FIELD"; |
+ break; |
} |
EmbeddedVector<char, 128> buf; |
SNPrintF(buf, "PROPERTY%s - %s", property->is_static() ? " - STATIC" : "", |