1 | static void ctxProcessAction(S body) {
|
2 | ctxProcessAction(javaTok(body)); |
3 | } |
4 | |
5 | static void ctxProcessAction(L<S> tok) {
|
6 | while (ctxProcessIf(tok)) {}
|
7 | if (l(tok) <= 1) ret; |
8 | |
9 | // find end of statement |
10 | int j = indexOf(tok, ";"); |
11 | j = j < 0 ? l(tok)-1 : j+1; |
12 | |
13 | L<S> rest = newSubList(tok, j); |
14 | tok = newSubList(tok, 0, j+1); |
15 | |
16 | ctxProcessStatement(tok); |
17 | ctxProcessAction(rest); |
18 | } |
Began life as a copy of #1008896
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: | #1008918 |
| Snippet name: | ctxProcessAction - split action body into statements and execute them |
| Eternal ID of this version: | #1008918/22 |
| Text MD5: | d152fdd224efd2f5c03af40b1f212a64 |
| Author: | stefan |
| Category: | javax / a.i. |
| Type: | JavaX fragment (include) |
| Public (visible to everyone): | Yes |
| Archived (hidden from active list): | No |
| Created/modified: | 2018-02-07 16:54:09 |
| Source code size: | 407 bytes / 18 lines |
| Pitched / IR pitched: | No / No |
| Views / Downloads: | 813 / 869 |
| Version history: | 21 change(s) |
| Referenced in: | [show references] |