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

47
LINES

< > BotCompany Repo | #1032175 // tok_expandMultiTypeArgument_v2

JavaX fragment (include) [tags: use-pretranspiled]

Transpiled version (4270L) is out of date.

1  
svoid tok_expandMultiTypeArgument_v2(LS tok,
2  
  int iArgStart, int iArgEnd, // start and end of argument
3  
  S argName, S mainType, LPairS alts) {
4  
  
5  
  iArgEnd |= 1;
6  
7  
  int iOpening = lastIndexOf(tok, iArgStart, "("); // TODO: brackets
8  
  int iClosing = findEndOfBracketPart2(tok, iOpening)-1;
9  
  
10  
  // function name
11  
  int iName = iOpening-2;
12  
  S name = assertIdentifier(get(tok, iName));
13  
  
14  
  int iType = tok_leftScanType(tok, iName);
15  
  int iStart = tok_leftScanTypeArgsOpt(tok, iType);
16  
  iStart = leftScanModifiers(tok, iStart);
17  
  //print("Found method head: " + joinSubList(tok, iStart, iClosing+1));
18  
  LS _args1 = subList(tok, iOpening+1, iArgStart);
19  
  LS _args2 = subList(tok, iArgEnd&~1, iClosing);
20  
  LS args1 = tok_parseArgsDeclList2(_args1);
21  
  LS args2 = tok_parseArgsDeclList2(_args2);
22  
  LS type = subList(tok, iType-1, iName);
23  
  bool isVoid = containsOneOf(codeTokens(type), javaxVoidAliases());
24  
  //printVars(+expr, +_args1, +_args2, +args1, +args2, +type, +isVoid);
25  
  
26  
  new LS altFunctions;
27  
  
28  
  for (S altType, S conversionExpr : unpair alts) {
29  
   if (tok_isSingleIdentifier(conversionExpr))
30  
      conversionExpr += "(\*argName*/)";
31  
      
32  
    S altHead = joinSubList(tok, iStart, iOpening+1)
33  
      + joinWithComma(concatLists(
34  
          args1,
35  
          ll(altType + " " + argName),
36  
          args2)) + ")";
37  
    altFunctions.add(altHead + " { "
38  
      + (isVoid ? "" : "return ") + name + "(" + 
39  
        joinWithComma(concatLists(
40  
          map tok_lastIdentifier(args1),
41  
          ll(conversionExpr),
42  
          map tok_lastIdentifier(args2))) + "); }\n");
43  
  }
44  
        
45  
  replaceTokens_reTok(tok, iArgStart|1, iArgEnd, mainType + " " + argName);
46  
  tokPrepend_reTok(tok, iStart, lines(altFunctions));
47  
}

Author comment

Began life as a copy of #1032172

download  show line numbers  debug dex  old transpilations   

Travelled to 3 computer(s): bhatertpkbcr, mqqgnosmbjvj, pyentgdyhuwx

No comments. add comment

Snippet ID: #1032175
Snippet name: tok_expandMultiTypeArgument_v2
Eternal ID of this version: #1032175/3
Text MD5: 8cc07e6d2c0393e2eb30e931c06e86d0
Author: stefan
Category: javax
Type: JavaX fragment (include)
Public (visible to everyone): Yes
Archived (hidden from active list): No
Created/modified: 2022-06-27 10:30:58
Source code size: 1756 bytes / 47 lines
Pitched / IR pitched: No / No
Views / Downloads: 108 / 163
Version history: 2 change(s)
Referenced in: [show references]