Move GlobalObject.* into vm/. rs=cdleary

--HG--
rename : js/src/GlobalObject.cpp => js/src/vm/GlobalObject.cpp
rename : js/src/GlobalObject.h => js/src/vm/GlobalObject.h
extra : rebase_source : 724ae53fda5a1c74a71b01f3d44796536d413a45
This commit is contained in:
Jeff Walden 2011-04-28 19:08:22 -04:00
parent 685d432db1
commit e9bdd399b1
4 changed files with 4 additions and 3 deletions

View File

@ -147,7 +147,6 @@ CPPSRCS = \
jsgcmark.cpp \
jsgcchunk.cpp \
jsgcstats.cpp \
GlobalObject.cpp \
jshash.cpp \
jsinterp.cpp \
jsinvoke.cpp \
@ -181,6 +180,7 @@ CPPSRCS = \
jsxml.cpp \
prmjtime.cpp \
sharkctl.cpp \
GlobalObject.cpp \
Stack.cpp \
$(NULL)
@ -214,7 +214,6 @@ INSTALLED_HEADERS = \
jsgcchunk.h \
jsgcstats.h \
jscompartment.h \
GlobalObject.h \
jshash.h \
jsinterp.h \
jsinttypes.h \
@ -278,6 +277,7 @@ VPATH += \
EXPORTS_NAMESPACES = vm
EXPORTS_vm = \
GlobalObject.h \
Stack.h \
StringObject.h \
$(NULL)

View File

@ -58,11 +58,12 @@
/* Headers included for inline implementations used by this header. */
#include "jsbool.h"
#include "jscntxt.h"
#include "GlobalObject.h"
#include "jsnum.h"
#include "jsscriptinlines.h"
#include "jsstr.h"
#include "vm/GlobalObject.h"
#include "jsfuninlines.h"
#include "jsgcinlines.h"
#include "jsprobes.h"