Skip to content

Commit 4e50cd7

Browse files
Plamen5kovpetekanev
authored andcommitted
fix for issue #696
long was converted to int
1 parent 33421f7 commit 4e50cd7

File tree

7 files changed

+21
-4
lines changed

7 files changed

+21
-4
lines changed

runtime/src/main/jni/JsArgConverter.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -371,7 +371,7 @@ bool JsArgConverter::ConvertJavaScriptArray(const Local<Array>& jsArr, int index
371371
case 'J':
372372
arr = m_env.NewLongArray(arrLength);
373373
for (jsize i = 0; i < arrLength; i++) {
374-
jlong value = jsArr->Get(i)->Int32Value();
374+
jlong value = jsArr->Get(i)->NumberValue();
375375
m_env.SetLongArrayRegion((jlongArray) arr, i, 1, &value);
376376
}
377377
break;

test-app/app/src/main/assets/app/MyActivity.js

-3
Original file line numberDiff line numberDiff line change
@@ -55,9 +55,6 @@ var MyActivity = (function (_super) {
5555
onClick: function() {
5656
button.setBackgroundColor(colors[taps % colors.length]);
5757
taps++;
58-
taps++;
59-
taps++;
60-
taps++;
6158
}}));
6259
};
6360
MyActivity = __decorate([

test-app/app/src/main/assets/app/tests/numericConversionTests.js

+11
Original file line numberDiff line numberDiff line change
@@ -700,4 +700,15 @@ describe("Tests numeric conversions and constructor/method resolutions", functio
700700
expect(exceptionThrown).toBe(true);
701701
expect(exceptionCaught).toBe(true);
702702
});
703+
704+
it("TestLongArrayIsConvertedCorrectly", function() {
705+
706+
__log("TEST: TestLongArrayIsConvertedCorrectly");
707+
708+
var t = new com.tns.tests.LongArrayTest();
709+
var result = t.test([ 1485609581321, 1485609581321 ]);
710+
var expectedResult = "[1485609581321, 1485609581321]"
711+
712+
expect(result).toBe(expectedResult);
713+
});
703714
});
Binary file not shown.
Binary file not shown.
Binary file not shown.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
package com.tns.tests;
2+
3+
public class LongArrayTest {
4+
5+
public String test(long[] arr)
6+
{
7+
return java.util.Arrays.toString(arr);
8+
}
9+
}

0 commit comments

Comments
 (0)