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

Unified Diff: src/objects.h

Issue 1420693005: Fix spacing for JSCollection, JSSet, and JSMap. Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 5 years, 1 month 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
« no previous file with comments | « AUTHORS ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/objects.h
diff --git a/src/objects.h b/src/objects.h
index c2421d019efcf51a71de4167346edb0f305fda2c..fff1ccbc89c001a4d23f3f739e3b85bb4447626b 100644
--- a/src/objects.h
+++ b/src/objects.h
@@ -9651,7 +9651,7 @@ class JSFunctionProxy: public JSProxy {
};
-class JSCollection : public JSObject {
+class JSCollection: public JSObject {
public:
// [table]: the backing hash table
DECL_ACCESSORS(table, Object)
@@ -9665,7 +9665,7 @@ class JSCollection : public JSObject {
// The JSSet describes EcmaScript Harmony sets
-class JSSet : public JSCollection {
+class JSSet: public JSCollection {
public:
DECLARE_CAST(JSSet)
@@ -9682,7 +9682,7 @@ class JSSet : public JSCollection {
// The JSMap describes EcmaScript Harmony maps
-class JSMap : public JSCollection {
+class JSMap: public JSCollection {
public:
DECLARE_CAST(JSMap)
« no previous file with comments | « AUTHORS ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698