Bug 889146 (part 16) - Rename jstypedarray.{h,cpp} as vm/TypedArrayObject.{h,cpp}. r=sfink.

--HG--
rename : js/src/jstypedarray.cpp => js/src/vm/TypedArrayObject.cpp
rename : js/src/jstypedarray.h => js/src/vm/TypedArrayObject.h
extra : rebase_source : a2004475244dfb691b1bb08c07d29f7fe01716ca
This commit is contained in:
Nicholas Nethercote 2013-07-02 20:58:39 -07:00
Родитель 371d39417d
Коммит ec6023a9ee
11 изменённых файлов: 14 добавлений и 14 удалений

Просмотреть файл

@ -34,9 +34,9 @@
#include "jscompartment.h"
#include "jsnum.h"
#include "jsprf.h"
#include "jstypedarray.h"
#include "ctypes/Library.h"
#include "vm/TypedArrayObject.h"
using namespace std;

Просмотреть файл

@ -8,10 +8,9 @@
#include "mozilla/DebugOnly.h"
#include "jstypedarray.h"
#include "ion/IonCode.h"
#include "vm/Shape.h"
#include "vm/TypedArrayObject.h"
#include "jscompartmentinlines.h"
#include "jsinferinlines.h"

Просмотреть файл

@ -9,12 +9,12 @@
#include "jscompartment.h"
#include "jsgc.h"
#include "jstypedarray.h"
#include "jsutil.h"
#include "gc/GCInternals.h"
#include "gc/Memory.h"
#include "vm/Debugger.h"
#include "vm/TypedArrayObject.h"
#include "jscompartmentinlines.h"
#include "jsobjinlines.h"

Просмотреть файл

@ -9,7 +9,6 @@
#ifdef JS_ION
#include "jstypedarray.h"
#include "jscompartment.h"
#if defined(JS_CPU_X86)
@ -26,6 +25,7 @@
#include "ion/VMFunctions.h"
#include "vm/ForkJoin.h"
#include "vm/Shape.h"
#include "vm/TypedArrayObject.h"
namespace js {
namespace ion {

Просмотреть файл

@ -46,7 +46,6 @@
#include "prmjtime.h"
#include "jsweakmap.h"
#include "jswrapper.h"
#include "jstypedarray.h"
#ifdef JS_THREADSAFE
#include "jsworkers.h"
#endif
@ -72,6 +71,7 @@
#include "vm/Shape.h"
#include "vm/StopIterationObject.h"
#include "vm/StringBuffer.h"
#include "vm/TypedArrayObject.h"
#include "vm/WeakMapObject.h"
#include "vm/Xdr.h"
#include "yarr/BumpPointerAllocator.h"

Просмотреть файл

@ -33,7 +33,8 @@
#include "mozilla/FloatingPoint.h"
#include "jsdate.h"
#include "jstypedarray.h"
#include "vm/TypedArrayObject.h"
#include "vm/BooleanObject-inl.h"
#include "vm/RegExpObject-inl.h"

Просмотреть файл

@ -17,7 +17,6 @@
#include "jsinfer.h"
#include "jsprf.h"
#include "jsproxy.h"
#include "jstypedarray.h"
#include "builtin/ParallelArray.h"
#include "ion/IonFrames.h"
@ -27,6 +26,7 @@
#include "vm/GlobalObject.h"
#include "vm/NumberObject.h"
#include "vm/StringObject.h"
#include "vm/TypedArrayObject.h"
#include "jsanalyzeinlines.h"
#include "jscntxtinlines.h"

Просмотреть файл

@ -128,6 +128,7 @@ CPP_SOURCES += [
'TestingFunctions.cpp',
'ThreadPool.cpp',
'TokenStream.cpp',
'TypedArrayObject.cpp',
'Unicode.cpp',
'Verifier.cpp',
'Xdr.cpp',
@ -170,7 +171,6 @@ CPP_SOURCES += [
'jsreflect.cpp',
'jsscript.cpp',
'jsstr.cpp',
'jstypedarray.cpp',
'jsutil.cpp',
'jswatchpoint.cpp',
'jsweakmap.cpp',

Просмотреть файл

@ -35,7 +35,6 @@
#include "json.h"
#include "jsreflect.h"
#include "jsscript.h"
#include "jstypedarray.h"
#include "jsworkers.h"
#include "jswrapper.h"
#include "perf/jsperf.h"
@ -44,6 +43,7 @@
#include "frontend/BytecodeEmitter.h"
#include "frontend/Parser.h"
#include "vm/Shape.h"
#include "vm/TypedArrayObject.h"
#include "prmjtime.h"

Просмотреть файл

@ -4,7 +4,7 @@
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
#include "jstypedarray.h"
#include "vm/TypedArrayObject.h"
#include <string.h>

Просмотреть файл

@ -4,8 +4,8 @@
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
#ifndef jstypedarray_h
#define jstypedarray_h
#ifndef vm_TypedArrayObject_h
#define vm_TypedArrayObject_h
#include "jsapi.h"
#include "jsclass.h"
@ -605,4 +605,4 @@ JSObject::is<js::ArrayBufferViewObject>() const
return is<js::DataViewObject>() || is<js::TypedArrayObject>();
}
#endif /* jstypedarray_h */
#endif /* vm_TypedArrayObject_h */