()
| 412 | } |
| 413 | |
| 414 | public Type destType() { |
| 415 | Preconditions.checkState(isResolved_); |
| 416 | if (!matchedTypes_.isEmpty()) return matchedTypes_.get(matchedTypes_.size() - 1); |
| 417 | if (rootDesc_ != null) return rootDesc_.getType(); |
| 418 | if (rootTable_ != null) return rootTable_.getType(); |
| 419 | return null; |
| 420 | } |
| 421 | |
| 422 | public FeTable destTable() { |
| 423 | Preconditions.checkState(isResolved_); |
no test coverage detected