static int numberOfMethodArguments(O o, S method) { Class c; bool mustBeStatic = false; if (o instanceof Class) { c = (Class) o; mustBeStatic = true; } else c = o.getClass(); Class _c = c; int n = -1; while (c != null) { for (Method m : c.getDeclaredMethods()) { if (!m.getName().equals(method)) continue; if (mustBeStatic && !methodIsStatic(m)) continue; int nn = l(m.getParameterTypes()); if (n == -1) n = nn; else if (n != nn) fail("Variable number of method arguments: " + _c + "." + method); } c = c.getSuperclass(); } if (n == -1) fail("Method not found: " + _c + "." + method); ret n; }
download show line numbers debug dex old transpilations
Travelled to 17 computer(s): aoiabmzegqzx, bhatertpkbcr, cbybwowwnfue, cfunsshuasjs, gwrvuhgaqvyk, ishqpsrjomds, lpdgvwnxivlt, mqqgnosmbjvj, onxytkatvevr, ppjhyzlbdabe, pyentgdyhuwx, pzhvpgtvlbxg, tslmcundralx, tvejysmllsmz, vouqrxazstgt, whxojlpjdney, xrpafgyirdlv
No comments. add comment
| Snippet ID: | #1008683 | 
| Snippet name: | numberOfMethodArguments | 
| Eternal ID of this version: | #1008683/4 | 
| Text MD5: | 966ad5c2bc725bd517e1f65482735c42 | 
| Author: | stefan | 
| Category: | javax / a.i. | 
| Type: | JavaX fragment (include) | 
| Public (visible to everyone): | Yes | 
| Archived (hidden from active list): | No | 
| Created/modified: | 2017-11-05 00:29:36 | 
| Source code size: | 697 bytes / 24 lines | 
| Pitched / IR pitched: | No / No | 
| Views / Downloads: | 737 / 3653 | 
| Version history: | 3 change(s) | 
| Referenced in: | [show references] |