From a7ba902486effb3afec698395a249964fe7b0212 Mon Sep 17 00:00:00 2001 From: "fpizlo@apple.com" Date: Fri, 9 Nov 2012 22:28:47 +0000 Subject: [PATCH] Fix indentation of BooleanConstructor.h Rubber stamped by Mark Hahnenberg. * runtime/BooleanConstructor.h: git-svn-id: http://svn.webkit.org/repository/webkit/trunk@134114 268f45cc-cd09-0410-ab3c-d52691b4dbfc --- Source/JavaScriptCore/ChangeLog | 8 ++++ .../runtime/BooleanConstructor.h | 48 +++++++++---------- 2 files changed, 32 insertions(+), 24 deletions(-) diff --git a/Source/JavaScriptCore/ChangeLog b/Source/JavaScriptCore/ChangeLog index 4529dfa3b53..f72f23beb43 100644 --- a/Source/JavaScriptCore/ChangeLog +++ b/Source/JavaScriptCore/ChangeLog @@ -1,3 +1,11 @@ +2012-11-09 Filip Pizlo + + Fix indentation of BooleanConstructor.h + + Rubber stamped by Mark Hahnenberg. + + * runtime/BooleanConstructor.h: + 2012-11-09 Filip Pizlo Fix indentation of BatchedTransitionOptimizer.h diff --git a/Source/JavaScriptCore/runtime/BooleanConstructor.h b/Source/JavaScriptCore/runtime/BooleanConstructor.h index 2b6bafa2f4b..f395374ae7f 100644 --- a/Source/JavaScriptCore/runtime/BooleanConstructor.h +++ b/Source/JavaScriptCore/runtime/BooleanConstructor.h @@ -25,37 +25,37 @@ namespace JSC { - class BooleanPrototype; +class BooleanPrototype; - class BooleanConstructor : public InternalFunction { - public: - typedef InternalFunction Base; +class BooleanConstructor : public InternalFunction { +public: + typedef InternalFunction Base; - static BooleanConstructor* create(ExecState* exec, JSGlobalObject* globalObject, Structure* structure, BooleanPrototype* booleanPrototype) - { - BooleanConstructor* constructor = new (NotNull, allocateCell(*exec->heap())) BooleanConstructor(globalObject, structure); - constructor->finishCreation(exec, booleanPrototype); - return constructor; - } + static BooleanConstructor* create(ExecState* exec, JSGlobalObject* globalObject, Structure* structure, BooleanPrototype* booleanPrototype) + { + BooleanConstructor* constructor = new (NotNull, allocateCell(*exec->heap())) BooleanConstructor(globalObject, structure); + constructor->finishCreation(exec, booleanPrototype); + return constructor; + } - static const ClassInfo s_info; + static const ClassInfo s_info; - static Structure* createStructure(JSGlobalData& globalData, JSGlobalObject* globalObject, JSValue prototype) - { - return Structure::create(globalData, globalObject, prototype, TypeInfo(ObjectType, StructureFlags), &s_info); - } + static Structure* createStructure(JSGlobalData& globalData, JSGlobalObject* globalObject, JSValue prototype) + { + return Structure::create(globalData, globalObject, prototype, TypeInfo(ObjectType, StructureFlags), &s_info); + } - protected: - void finishCreation(ExecState*, BooleanPrototype*); +protected: + void finishCreation(ExecState*, BooleanPrototype*); - private: - BooleanConstructor(JSGlobalObject*, Structure*); - static ConstructType getConstructData(JSCell*, ConstructData&); - static CallType getCallData(JSCell*, CallData&); - }; +private: + BooleanConstructor(JSGlobalObject*, Structure*); + static ConstructType getConstructData(JSCell*, ConstructData&); + static CallType getCallData(JSCell*, CallData&); +}; - JSObject* constructBooleanFromImmediateBoolean(ExecState*, JSGlobalObject*, JSValue); - JSObject* constructBoolean(ExecState*, const ArgList&); +JSObject* constructBooleanFromImmediateBoolean(ExecState*, JSGlobalObject*, JSValue); +JSObject* constructBoolean(ExecState*, const ArgList&); } // namespace JSC -- GitLab