1 | static L<S> tok_combineSquareBrackets(LS 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 = findEndOfBracketPart2(tok, i); |
7 | l.add(joinSubList(tok, i+1, j-1)); |
8 | i = j-1; |
9 | } else |
10 | l.add(t); |
11 | } |
12 | ret l; |
13 | } |
Began life as a copy of #1013171
download show line numbers debug dex old transpilations
Travelled to 7 computer(s): bhatertpkbcr, cfunsshuasjs, mqqgnosmbjvj, pyentgdyhuwx, pzhvpgtvlbxg, tvejysmllsmz, vouqrxazstgt
No comments. add comment
Snippet ID: | #1021307 |
Snippet name: | tok_combineSquareBrackets |
Eternal ID of this version: | #1021307/1 |
Text MD5: | 138d6b7bea6c893dcba002337d19abd4 |
Author: | stefan |
Category: | javax / parsing |
Type: | JavaX fragment (include) |
Public (visible to everyone): | Yes |
Archived (hidden from active list): | No |
Created/modified: | 2019-02-08 13:56:59 |
Source code size: | 290 bytes / 13 lines |
Pitched / IR pitched: | No / No |
Views / Downloads: | 261 / 295 |
Referenced in: | [show references] |