| 1 | package org.dynjs.runtime.java; |
| 2 | |
| 3 | public interface Foo { |
| 4 | |
| 5 | public static final String SOME_STATIC_FINAL_STRING = "a static final string on an interface"; |
| 6 | |
| 7 | public String doIt(); |
| 8 | |
| 9 | public String doItDifferently(); |
| 10 | |
| 11 | } |
no outgoing calls
no test coverage detected