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 11f631c commit 2806959Copy full SHA for 2806959
src/javaxt/utils/src/Parser.java
@@ -869,7 +869,19 @@ private static Method parseMethod(String fn, String comments, String ext){
869
if (!parameters.isEmpty()){
870
for (String param : parameters.split(",")){
871
param = param.trim();
872
+
873
idx = param.lastIndexOf(" ");
874
+ if (idx==-1){
875
+ //Check if we have a spread operator
876
+ idx = param.indexOf("...");
877
+ if (idx>-1){
878
+ String t = param.substring(0, idx);
879
+ String n = param.substring(idx+3);
880
+ param = t + "... " + n;
881
+ idx = param.indexOf(" ");
882
+ }
883
884
885
String paramName = param.substring(idx).trim();
886
String paramType = param.substring(0, idx).trim();
887
idx = paramType.lastIndexOf(" ");
AltStyle によって変換されたページ (->オリジナル) / アドレス: モード: デフォルト 音声ブラウザ ルビ付き 配色反転 文字拡大 モバイル
0 commit comments