Skip to content

Commit 1f84f4d

Browse files
hansonrhansonr
authored andcommitted
SwingJS-site.zip update
1 parent e5b4842 commit 1f84f4d

File tree

6 files changed

+5
-4
lines changed

6 files changed

+5
-4
lines changed
8.86 KB
Binary file not shown.
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
20200726172331
1+
20200728062204
8.86 KB
Binary file not shown.
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
20200726172331
1+
20200728062204
8.86 KB
Binary file not shown.

sources/net.sf.j2s.java.core/srcjs/swingjs2.js

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14008,6 +14008,7 @@ if (ev.keyCode == 9 && ev.target["data-focuscomponent"]) {
1400814008

1400914009
// Google closure compiler cannot handle Clazz.new or Clazz.super
1401014010

14011+
// BH 2020.07.27 fix for inner class array names
1401114012
// BH 2020.06.18 better test for instanceof Object[]
1401214013
// BH 2020.06.03 sets user.home and user.dir to /TEMP/swingjs, and user.name to "swingjs"
1401314014
// BH 2020.04.01 2.2.0-v1e fixes missing C$.superclazz when class loaded from core
@@ -15092,7 +15093,7 @@ var arrayClass = function(baseClass, ndim) {
1509215093
break;
1509315094
default:
1509415095
if (stub.length > 1)
15095-
stub = baseClass.__CLASS_NAME__;
15096+
stub = baseClass.__CLASS_NAME$__ || baseClass.__CLASS_NAME__;
1509615097
break;
1509715098
}
1509815099
if (stub.indexOf(".") >= 0)
@@ -15255,7 +15256,7 @@ var shiftArray = function(a, i0, k) {
1525515256

1525615257
var getParamCode = Clazz._getParamCode = function(cl) {
1525715258
cl.$clazz$ && (cl = cl.$clazz$);
15258-
return cl.__PARAMCODE || (cl.__PARAMCODE = stripJavaLang(cl.__CLASS_NAME__).replace(/\./g, '_'));
15259+
return cl.__PARAMCODE || (cl.__PARAMCODE = stripJavaLang(cl.__CLASS_NAME$__ || cl.__CLASS_NAME__).replace(/\./g, '_'));
1525915260
}
1526015261

1526115262
var newTypedA = function(baseClass, args, nBits, ndims, isClone) {

0 commit comments

Comments
 (0)