()
| 61 | } |
| 62 | |
| 63 | public String getFileName() { |
| 64 | String name = null; |
| 65 | if (this.block.getPosition() != null) { |
| 66 | name = this.block.getPosition().getFileName(); |
| 67 | } |
| 68 | if (name == null) { |
| 69 | name = "<eval>"; |
| 70 | } |
| 71 | return name; |
| 72 | } |
| 73 | |
| 74 | } |
nothing calls this directly
no test coverage detected