Not logged in.  Login/Logout/Register | List snippets | | Create snippet | Upload image | Upload data

24
LINES

< > BotCompany Repo | #1002532 // Has Constructor Bot

JavaX source code [tags: use-pretranspiled] - run with: x30.jar

Libraryless. Click here for Pure Java version (3077L/20K/66K).

!752

!include #1002529 // Explain

answer {
  if "does this class have any constructors: *" exceptionToUser {
    S java = m.unq(0);
    Explain explain = jExplainFull(java, "source");

    // make sure it's actually a class declaration
    //assertTrue("Bad class: " + explain.className(), litlist("classdecl", "emptyclass").contains(explain.className()));
    
    // go to class declaration instead
    Explain e2 = explain.findFirst("classdecl");
    if (e2 == null)
      ret "oops " + structure(explain);
    explain = e2;
    
    // remove all inner classes
    explain.pruneSubs("classdecl");
   
    ret yn(nempty(explain.findAll("constructordecl")));
  }
}

Author comment

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: 667 / 1099
Referenced in: [show references]