(ExecutionContext context, Object o)
| 393 | } |
| 394 | |
| 395 | public static Object getValue(ExecutionContext context, Object o) { |
| 396 | if (o instanceof Reference) { |
| 397 | return ((Reference) o).getValue(context); |
| 398 | } |
| 399 | return o; |
| 400 | } |
| 401 | |
| 402 | private static Pattern EXP_PATTERN = Pattern.compile("^(.*)e([+-])([0-9]+)$"); |
| 403 | public static String toString(ExecutionContext context, Object o) { |
no outgoing calls
no test coverage detected