Modified: trunk/Source/_javascript_Core/ChangeLog (134113 => 134114)
--- trunk/Source/_javascript_Core/ChangeLog 2012-11-09 22:27:48 UTC (rev 134113)
+++ trunk/Source/_javascript_Core/ChangeLog 2012-11-09 22:28:47 UTC (rev 134114)
@@ -1,5 +1,13 @@
2012-11-09 Filip Pizlo <[email protected]>
+ Fix indentation of BooleanConstructor.h
+
+ Rubber stamped by Mark Hahnenberg.
+
+ * runtime/BooleanConstructor.h:
+
+2012-11-09 Filip Pizlo <[email protected]>
+
Fix indentation of BatchedTransitionOptimizer.h
Rubber stamped by Mark Hahnenberg.
Modified: trunk/Source/_javascript_Core/runtime/BooleanConstructor.h (134113 => 134114)
--- trunk/Source/_javascript_Core/runtime/BooleanConstructor.h 2012-11-09 22:27:48 UTC (rev 134113)
+++ trunk/Source/_javascript_Core/runtime/BooleanConstructor.h 2012-11-09 22:28:47 UTC (rev 134114)
@@ -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<BooleanConstructor>(*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<BooleanConstructor>(*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