We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 04cf938 commit c2b5767Copy full SHA for c2b5767
sources/net.sf.j2s.java.core/src/java/lang/ClassExt.js
@@ -936,7 +936,11 @@ Clazz.innerFunctions.newInstance = function () {
936
var inF = Clazz.innerFunctionNames;
937
for (var i = 0; i < inF.length; i++) {
938
Object[inF[i]] = Clazz.innerFunctions[inF[i]];
939
+ Array[inF[i]] = Clazz.innerFunctions[inF[i]];
940
}
941
+ Array["isArray"] = function () {
942
+ return true;
943
+ };
944
945
946
/* public */
0 commit comments