Skip to content

Commit d56fca9

Browse files
hansonrhansonr
authored andcommitted
SwingJS-site.zip update
1 parent 9817087 commit d56fca9

File tree

6 files changed

+5
-4
lines changed

6 files changed

+5
-4
lines changed
-6.67 MB
Binary file not shown.
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
20210208070840
1+
20210213105349
-6.8 MB
Binary file not shown.
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
20210208070840
1+
20210213105349
-3.62 MB
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
@@ -14022,6 +14022,7 @@ if (ev.keyCode == 9 && ev.target["data-focuscomponent"]) {
1402214022

1402314023
// Google closure compiler cannot handle Clazz.new or Clazz.super
1402414024

14025+
// BH 2021.02.12 implements better(?) interface defaults resolution -- in order of presentation
1402514026
// BH 2020.12.31 3.3.1-v1 full 64-bit long support; BigDecimal, BigInteger fully 64-bit
1402614027

1402714028
// BH 2020.12.19 3.2.10-v1 preliminary work aiming to back long with [r,m,s].
@@ -15714,14 +15715,14 @@ var copyStatics = function(clazzFrom, clazzThis, isInterface) {
1571415715
}
1571515716
}
1571615717
if (isInterface) {
15718+
clazzThis.$defaults$ && clazzThis.$defaults$(clazzThis);
1571715719
for (var o in clazzFrom.prototype) {
1571815720
if (clazzThis.prototype[o] == undefined && !excludeSuper(o)) {
1571915721
clazzThis.prototype[o] = clazzFrom.prototype[o];
1572015722
}
1572115723
}
1572215724
if (clazzFrom.$defaults$) {
1572315725
__allowOverwriteClass = false;
15724-
clazzThis.$defaults$ && clazzThis.$defaults$(clazzThis);
1572515726
clazzFrom.$defaults$(clazzThis);
1572615727
__allowOverwriteClass = true;
1572715728
}
@@ -16078,7 +16079,7 @@ var setSuperclass = function(clazzThis, clazzSuper){
1607816079
*/
1607916080
var addInterface = function (clazzThis, interfacez) {
1608016081
if (interfacez instanceof Array) {
16081-
for (var i = interfacez.length; --i >= 0;) {
16082+
for (var i = 0, n = interfacez.length; i < n; i++) {
1608216083
var iface = interfacez[i];
1608316084
if (iface instanceof Array) {
1608416085
var cl;

0 commit comments

Comments
 (0)