summaryrefslogtreecommitdiff
path: root/src/3rdparty/v8/src/code-stubs.h
diff options
context:
space:
mode:
authorAaron Kennedy <aaron.kennedy@nokia.com>2011-10-27 13:34:16 +0100
committerQt by Nokia <qt-info@nokia.com>2012-04-26 08:56:19 +0200
commit83b51177e547a9e012a17294c8cefb05836ab00a (patch)
tree86265615238503448b20f1f76548f9325940c287 /src/3rdparty/v8/src/code-stubs.h
parentbe6cf8d816419603ee993109f7903ebb002653af (diff)
downloadqtjsbackend-83b51177e547a9e012a17294c8cefb05836ab00a.tar.gz
[V8] Introduce a QML compilation mode
In QML mode, there is a second global object - known as the QML global object. During property resolution, if a property is not present on the JS global object, it is resolved on the QML global object. This global object behavior is only enabled if a script is being compiled in QML mode. The object to use as the QML global object is passed as a parameter to the Script::Run() method. Any function closures etc. created during the run will retain a reference to this object, so different objects can be passed in different script runs. Change-Id: Id3753db6f5723f6d624bd497d6f606244a4ff09a Reviewed-by: Kent Hansen <kent.hansen@nokia.com>
Diffstat (limited to 'src/3rdparty/v8/src/code-stubs.h')
-rw-r--r--src/3rdparty/v8/src/code-stubs.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/3rdparty/v8/src/code-stubs.h b/src/3rdparty/v8/src/code-stubs.h
index b67e961..4b6ceb2 100644
--- a/src/3rdparty/v8/src/code-stubs.h
+++ b/src/3rdparty/v8/src/code-stubs.h
@@ -343,7 +343,7 @@ class FastNewContextStub : public CodeStub {
static const int kMaximumSlots = 64;
explicit FastNewContextStub(int slots) : slots_(slots) {
- ASSERT(slots_ > 0 && slots_ <= kMaximumSlots);
+ ASSERT(slots_ >= 0 && slots_ <= kMaximumSlots);
}
void Generate(MacroAssembler* masm);
@@ -361,7 +361,7 @@ class FastNewBlockContextStub : public CodeStub {
static const int kMaximumSlots = 64;
explicit FastNewBlockContextStub(int slots) : slots_(slots) {
- ASSERT(slots_ > 0 && slots_ <= kMaximumSlots);
+ ASSERT(slots_ >= 0 && slots_ <= kMaximumSlots);
}
void Generate(MacroAssembler* masm);