Libraryless. Click here for Pure Java version (131L/2K/5K).
// Syntax: awt { doSomethingInAwtThread(); } !592 1000265 // auto-importer, standard function adder public class main { public static void main(String[] args) throws Exception { String s = loadMainJava(); Pattern regex = Pattern.compile("(awt)\\s*\\{"); for (int i = 0; i < 100; i++) { Matcher matcher = regex.matcher(s); if (!matcher.find()) break; int start = matcher.start(), end = matcher.end(); int endOfBlock = findEndOfBlock(s, end); boolean daemon = matcher.group().startsWith("d"); String code = "SwingUtilities.invokeLater(new Runnable() {\n" + "public void run() {\n" + "try {\n" + s.substring(end, endOfBlock) + "} catch (Exception _e) {\n" + " throw _e instanceof RuntimeException ? (RuntimeException) _e : new RuntimeException(_e); } }\n});"; s = s.substring(0, start) + code + s.substring(endOfBlock+1); } saveMainJava(s); } // start is the index AFTER the opening bracket // returns index OF closing bracket static int findEndOfBlock(String s, int start) { int level = 1; for (int i = start; i < s.length(); i++) { if (s.charAt(i) == '{') ++level; else if (s.charAt(i) == '}') --level; if (level == 0) return i; } return s.length(); } }
Began life as a copy of #721
download show line numbers debug dex old transpilations
Travelled to 18 computer(s): aoiabmzegqzx, bhatertpkbcr, cbybwowwnfue, cfunsshuasjs, ddnzoavkxhuk, dhtvkmknsjym, gwrvuhgaqvyk, ishqpsrjomds, jtubtzbbkimh, lpdgvwnxivlt, mqqgnosmbjvj, onxytkatvevr, pyentgdyhuwx, pzhvpgtvlbxg, teubizvjbppd, tslmcundralx, tvejysmllsmz, vouqrxazstgt
No comments. add comment
Snippet ID: | #1000805 |
Snippet name: | "awt {" (JavaX translator) |
Eternal ID of this version: | #1000805/1 |
Text MD5: | f4eb02052da300952c1a7052261b9b5d |
Transpilation MD5: | 9004a9598c3a2e5f528a2280f9b495c3 |
Author: | stefan |
Category: | |
Type: | JavaX translator |
Public (visible to everyone): | Yes |
Archived (hidden from active list): | No |
Created/modified: | 2016-01-29 18:38:35 |
Source code size: | 1382 bytes / 43 lines |
Pitched / IR pitched: | No / No |
Views / Downloads: | 847 / 4814 |
Referenced in: | [show references] |