static Set<S> tokenIndexWithoutIfclass(L<S> tok) { new HashSet<S> set; int n = l(tok); int level = 0; for (int i = 1; i < n; i += 2) { S t = tok.get(i); if (eqOneOf(t, "ifclass", "ifndef")) ++level; else if (eqOneOf(t, "endif", "endifndef")) --level; else if (level <= 0 && startsWithJavaIdentifierStart(t)) set.add(t); } ret set; }
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: | #1007325 |
Snippet name: | tokenIndexWithoutIfclass |
Eternal ID of this version: | #1007325/5 |
Text MD5: | 99b1d7bdd4c7e4ad2cbe4275481dac8e |
Author: | stefan |
Category: | javax / parsing |
Type: | JavaX fragment (include) |
Public (visible to everyone): | Yes |
Archived (hidden from active list): | No |
Created/modified: | 2018-05-29 16:15:16 |
Source code size: | 371 bytes / 12 lines |
Pitched / IR pitched: | No / No |
Views / Downloads: | 625 / 631 |
Version history: | 4 change(s) |
Referenced in: | #1006654 - Standard functions list 2 (LIVE, continuation of #761) #1015999 - tokenIndexWithoutIfclass_forStdClasses |