(long goref, boolean empty)
| 12 | protected long goRef; |
| 13 | |
| 14 | protected GoValue(long goref, boolean empty) { |
| 15 | this.goRef = goref; |
| 16 | } |
| 17 | public GoValue(Object v) { |
| 18 | this(matchaGoForeign(Tracker.singleton().track(v)), false); |
| 19 | } |
nothing calls this directly
no test coverage detected