Libraryless. Click here for Pure Java version (3077L/20K/66K).
1 | !752 |
2 | |
3 | !include #1002529 // Explain |
4 | |
5 | answer {
|
6 | if "does this class have any constructors: *" exceptionToUser {
|
7 | S java = m.unq(0); |
8 | Explain explain = jExplainFull(java, "source"); |
9 | |
10 | // make sure it's actually a class declaration |
11 | //assertTrue("Bad class: " + explain.className(), litlist("classdecl", "emptyclass").contains(explain.className()));
|
12 | |
13 | // go to class declaration instead |
14 | Explain e2 = explain.findFirst("classdecl");
|
15 | if (e2 == null) |
16 | ret "oops " + structure(explain); |
17 | explain = e2; |
18 | |
19 | // remove all inner classes |
20 | explain.pruneSubs("classdecl");
|
21 | |
22 | ret yn(nempty(explain.findAll("constructordecl")));
|
23 | } |
24 | } |
Began life as a copy of #1002530
download show line numbers debug dex old transpilations
Travelled to 13 computer(s): aoiabmzegqzx, bhatertpkbcr, cbybwowwnfue, cfunsshuasjs, gwrvuhgaqvyk, ishqpsrjomds, lpdgvwnxivlt, mqqgnosmbjvj, pyentgdyhuwx, pzhvpgtvlbxg, tslmcundralx, tvejysmllsmz, vouqrxazstgt
No comments. add comment
| Snippet ID: | #1002532 |
| Snippet name: | Has Constructor Bot |
| Eternal ID of this version: | #1002532/1 |
| Text MD5: | be8130980111c866c62b88b0c8238962 |
| Transpilation MD5: | 80bb3bea8b1c9d3830dd6bd7aabd83e7 |
| Author: | stefan |
| Category: | eleu / thinking about javax |
| Type: | JavaX source code |
| Public (visible to everyone): | Yes |
| Archived (hidden from active list): | No |
| Created/modified: | 2016-02-02 03:20:17 |
| Source code size: | 691 bytes / 24 lines |
| Pitched / IR pitched: | No / No |
| Views / Downloads: | 984 / 1478 |
| Referenced in: | [show references] |