Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2)

Unified Diff: arguments/src/prettyprinter.cc

Issue 6665067: [Arguments] Remove synthetic properties and all code dealing with them. (Closed) Base URL: https://v8.googlecode.com/svn/branches/experimental
Patch Set: Created 9 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: arguments/src/prettyprinter.cc
diff --git a/arguments/src/prettyprinter.cc b/arguments/src/prettyprinter.cc
index dda7abbb3f6de1641abaf27a76f0c5c13e969960..c11d5e0703de6353e34a9bd38518daf798fa5661 100644
--- a/arguments/src/prettyprinter.cc
+++ b/arguments/src/prettyprinter.cc
@@ -1427,10 +1427,6 @@ void JsonAstBuilder::VisitThrow(Throw* expr) {
void JsonAstBuilder::VisitProperty(Property* expr) {
TagScope tag(this, "Property");
- {
- AttributesScope attributes(this);
- AddAttribute("type", expr->is_synthetic() ? "SYNTHETIC" : "NORMAL");
- }
Visit(expr->obj());
Visit(expr->key());
}

Powered by Google App Engine
This is Rietveld 408576698