Changeset 34855 in webkit for trunk/JavaScriptCore
- Timestamp:
- Jun 28, 2008, 2:40:47 PM (17 years ago)
- Location:
- trunk/JavaScriptCore
- Files:
-
- 14 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/ChangeLog
r34854 r34855 1 2008-06-28 Sam Weinig <[email protected]> 2 3 Fix windows build. 4 5 * kjs/ArrayPrototype.cpp: 6 * kjs/BooleanPrototype.cpp: 7 * kjs/BooleanPrototype.h: 8 * kjs/FunctionPrototype.cpp: 9 * kjs/JSImmediate.cpp: 10 * kjs/JSObject.cpp: 11 * kjs/MathObject.cpp: 12 * kjs/NumberPrototype.cpp: 13 * kjs/NumberPrototype.h: 14 * kjs/ObjectConstructor.cpp: 15 * kjs/RegExpObject.h: 16 * kjs/error_object.h: 17 * kjs/string_object.cpp: 18 1 19 2008-06-28 Sam Weinig <[email protected]> 2 20 -
trunk/JavaScriptCore/kjs/ArrayPrototype.cpp
r34843 r34855 26 26 27 27 #include "Machine.h" 28 #include "ObjectPrototype.h" 28 29 #include "error_object.h" 29 30 #include "lookup.h" -
trunk/JavaScriptCore/kjs/BooleanPrototype.cpp
r34843 r34855 22 22 #include "BooleanPrototype.h" 23 23 24 #include "FunctionPrototype.h" 25 #include "ObjectPrototype.h" 24 26 #include "error_object.h" 25 27 -
trunk/JavaScriptCore/kjs/BooleanPrototype.h
r34844 r34855 27 27 28 28 class FunctionPrototype; 29 class ObjectPrototype; 29 30 30 31 /** -
trunk/JavaScriptCore/kjs/FunctionPrototype.cpp
r34854 r34855 22 22 #include "FunctionPrototype.h" 23 23 24 #include "JSArray.h" 24 25 #include "JSString.h" 25 26 -
trunk/JavaScriptCore/kjs/JSImmediate.cpp
r34854 r34855 23 23 24 24 #include "BooleanConstructor.h" 25 #include "BooleanPrototype.h" 25 26 #include "JSGlobalObject.h" 26 27 #include "JSNotAnObject.h" 28 #include "NumberConstructor.h" 27 29 #include "NumberPrototype.h" 28 30 -
trunk/JavaScriptCore/kjs/JSObject.cpp
r34821 r34855 26 26 #include "JSObject.h" 27 27 28 #include "ObjectPrototype.h" 29 #include "PropertyNameArray.h" 28 30 #include "date_object.h" 29 31 #include "error_object.h" 30 32 #include "nodes.h" 31 33 #include "operations.h" 32 #include "PropertyNameArray.h"33 34 #include <math.h> 34 35 #include <profiler/Profiler.h> -
trunk/JavaScriptCore/kjs/MathObject.cpp
r34754 r34855 22 22 #include "MathObject.h" 23 23 24 #include "ObjectPrototype.h" 24 25 #include "operations.h" 25 26 #include <time.h> -
trunk/JavaScriptCore/kjs/NumberPrototype.cpp
r34854 r34855 23 23 #include "NumberPrototype.h" 24 24 25 #include "FunctionPrototype.h" 26 #include "ObjectPrototype.h" 25 27 #include "dtoa.h" 28 #include "error_object.h" 26 29 #include "error_object.h" 27 30 #include "operations.h" -
trunk/JavaScriptCore/kjs/NumberPrototype.h
r34854 r34855 27 27 namespace KJS { 28 28 29 class FunctionPrototype; 30 class ObjectPrototype; 31 29 32 /** 30 33 * @internal -
trunk/JavaScriptCore/kjs/ObjectConstructor.cpp
r34854 r34855 22 22 #include "ObjectConstructor.h" 23 23 24 #include "FunctionPrototype.h" 24 25 #include "JSGlobalObject.h" 25 #include " FunctionPrototype.h"26 #include "ObjectPrototype.h" 26 27 27 28 namespace KJS { -
trunk/JavaScriptCore/kjs/RegExpObject.h
r34854 r34855 22 22 #define RegExpObject_h 23 23 24 #include "JSFunction.h" 25 #include "JSObject.h" 24 26 #include "regexp.h" 25 27 … … 27 29 28 30 class FunctionPrototype; 31 class ObjectPrototype; 29 32 struct RegExpConstructorPrivate; 30 33 -
trunk/JavaScriptCore/kjs/error_object.h
r34854 r34855 27 27 28 28 class FunctionPrototype; 29 class ObjectPrototype; 29 30 30 31 class ErrorInstance : public JSObject { -
trunk/JavaScriptCore/kjs/string_object.cpp
r34843 r34855 25 25 #include "JSArray.h" 26 26 #include "JSWrapperObject.h" 27 #include "ObjectPrototype.h" 27 28 #include "PropertyNameArray.h" 28 29 #include "RegExpObject.h"
Note:
See TracChangeset
for help on using the changeset viewer.