| 184 | } |
| 185 | |
| 186 | override initializeDefaults(): void { |
| 187 | this.ourCompilers = {}; |
| 188 | this.ourExecutors = {}; |
| 189 | this.asmByCompiler = {}; |
| 190 | this.defaultFileByCompiler = {}; |
| 191 | this.busyCompilers = {}; |
| 192 | this.treeCompilers = {}; |
| 193 | |
| 194 | this.decorations = {}; |
| 195 | this.prevDecorations = []; |
| 196 | this.extraDecorations = []; |
| 197 | |
| 198 | this.fadeTimeoutId = null; |
| 199 | |
| 200 | this.editorSourceByLang = {}; |
| 201 | |
| 202 | this.awaitingInitialResults = false; |
| 203 | |
| 204 | this.revealJumpStack = []; |
| 205 | } |
| 206 | |
| 207 | override getInitialHTML(): string { |
| 208 | return $('#codeEditor').html(); |