(String text)
| 129 | } |
| 130 | |
| 131 | static String extractScript(String text){ |
| 132 | Matcher m = SCRIPT.matcher(text); |
| 133 | if (m.matches()) { |
| 134 | return m.group(1); |
| 135 | } |
| 136 | return null; |
| 137 | } |
| 138 | |
| 139 | private String runScript(long id) { |
| 140 | String errMessage = JscriptExecutor.executeScript(id); |
no outgoing calls