(boolean value)
| 78 | } |
| 79 | |
| 80 | public NameType withTmp(boolean value) { |
| 81 | if (tmp == value) return this; |
| 82 | |
| 83 | if (value) { |
| 84 | if (mapped) return MAPPED_TMP_PLAIN; |
| 85 | |
| 86 | return TMP_PLAIN; |
| 87 | } else { |
| 88 | if (mapped) return MAPPED_PLAIN; |
| 89 | |
| 90 | return PLAIN; |
| 91 | } |
| 92 | } |
| 93 | |
| 94 | // transform between tmp <-> loctmp |
| 95 | public NameType withUnmatchedTmp(boolean value) { |
no outgoing calls
no test coverage detected