Skip to content

Commit 41187a7

Browse files
committed
Upgrade v8 to 6.9.427.20
1 parent b736346 commit 41187a7

31 files changed

+20
-21
lines changed
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
"v8Version": "6.9.427.19"
2+
"v8Version": "6.9.427.20"
33
}

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "tns-android",
33
"description": "NativeScript Runtime for Android",
4-
"version": "4.3.0",
4+
"version": "5.0.0",
55
"repository": {
66
"type": "git",
77
"url": "https://github.com/NativeScript/android-runtime.git"
Binary file not shown.
Binary file not shown.
Binary file not shown.

test-app/runtime/src/main/cpp/ObjectManager.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -482,8 +482,8 @@ void ObjectManager::MarkReachableObjects(Isolate* isolate, const Local<Object>&
482482
}
483483

484484
auto o = top.As<Object>();
485-
if(!isInFirstRun) {
486-
uint8_t* addr = NativeScriptExtension::GetAddress(o);
485+
if (!isInFirstRun) {
486+
unsigned long addr = NativeScriptExtension::GetAddress(o);
487487
auto itFound = m_visited.find(addr);
488488
if (itFound != m_visited.end()) {
489489
continue;

test-app/runtime/src/main/cpp/ObjectManager.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -201,7 +201,7 @@ class ObjectManager {
201201

202202
PersistentObjectIdSet m_released;
203203

204-
std::set<uint8_t*> m_visited;
204+
std::set<unsigned long> m_visited;
205205

206206
LRUCache<int, jweak> m_cache;
207207

0 commit comments

Comments
 (0)