Libraryless. Click here for Pure Java version (3017L/19K).
1 | static L<Int> jfindAllIC(L<S> tok, S pat) { |
2 | ret jfindAllIC(tok, jfind_preprocess(javaTok(pat))); |
3 | } |
4 | |
5 | // tokPat must be jfind_preprocess'd |
6 | static L<Int> jfindAllIC(L<S> tok, L<S> tokPat) { |
7 | S[] toks = toStringArray(codeTokensOnly(tokPat)); |
8 | |
9 | int i = -1; |
10 | new L<Int> l; |
11 | while ((i = findCodeTokens(tok, i+1, true, toks)) >= 0) |
12 | l.add(i); |
13 | ret l; |
14 | } |
Began life as a copy of #1004162
download show line numbers debug dex old transpilations
Travelled to 7 computer(s): bhatertpkbcr, mqqgnosmbjvj, pyentgdyhuwx, pzhvpgtvlbxg, tvejysmllsmz, vouqrxazstgt, xrpafgyirdlv
No comments. add comment
Snippet ID: | #1027857 |
Snippet name: | jfindAllIC |
Eternal ID of this version: | #1027857/1 |
Text MD5: | b3ba603b66374cee8909be16d7a2a1c8 |
Transpilation MD5: | 59bbee66717a670538508a963d850207 |
Author: | stefan |
Category: | javax / tokenizing |
Type: | JavaX fragment (include) |
Public (visible to everyone): | Yes |
Archived (hidden from active list): | No |
Created/modified: | 2020-04-16 11:46:48 |
Source code size: | 369 bytes / 14 lines |
Pitched / IR pitched: | No / No |
Views / Downloads: | 170 / 269 |
Referenced in: | [show references] |