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

13
LINES

< > BotCompany Repo | #1025593 // tok_combineRoundBrackets_keep

JavaX fragment (include)

1  
static LS tok_combineRoundBrackets_keep(L<S> tok) {
2  
  new L<S> l;
3  
  for i over tok: {
4  
    S t = tok.get(i);
5  
    if (odd(i) && eq(t, "(")) {
6  
      int j = findEndOfBracketPart(tok, i);
7  
      l.add(joinSubList(tok, i, j));
8  
      i = j-1;
9  
    } else
10  
      l.add(t);
11  
  }
12  
  ret l;
13  
}

Author comment

Began life as a copy of #1011445

download  show line numbers  debug dex  old transpilations   

Travelled to 6 computer(s): bhatertpkbcr, mqqgnosmbjvj, pyentgdyhuwx, pzhvpgtvlbxg, tvejysmllsmz, vouqrxazstgt

No comments. add comment

Snippet ID: #1025593
Snippet name: tok_combineRoundBrackets_keep
Eternal ID of this version: #1025593/3
Text MD5: eb2d32295015ea08b100df9d5b41d4ba
Author: stefan
Category: javax / parsing
Type: JavaX fragment (include)
Public (visible to everyone): Yes
Archived (hidden from active list): No
Created/modified: 2019-10-05 22:47:51
Source code size: 289 bytes / 13 lines
Pitched / IR pitched: No / No
Views / Downloads: 151 / 194
Version history: 2 change(s)
Referenced in: [show references]