(code)
| 226 | }; |
| 227 | } |
| 228 | onDisplaying(code) { |
| 229 | let lines = this.data.LINES; |
| 230 | lines.behavior.onLineHeightChanged(lines, code.lineHeight); |
| 231 | let data = this.data; |
| 232 | let path = data.path; |
| 233 | this.onFileChanged(code); |
| 234 | this.onStateChanged(code, data.state); |
| 235 | this.info = system.getFileInfo(path); |
| 236 | this.notifier = new system.DirectoryNotifier(system.getPathDirectory(path), it => this.onDirectoryChanged(code)); |
| 237 | code.focus(); |
| 238 | } |
| 239 | onDirectoryChanged(code) { |
| 240 | let data = this.data; |
| 241 | let path = data.path; |
nothing calls this directly
no test coverage detected