removed redundant 'use strict' from ts files

This commit is contained in:
Steven Hugg 2021-08-11 11:18:14 -05:00
parent d1f51a2dd7
commit a12d1a0638
11 changed files with 0 additions and 12 deletions

View File

@ -1,4 +1,3 @@
"use strict";
import { hex, clamp, lpad } from "./util";
import { SourceLocation } from "./workertypes";

View File

@ -22,8 +22,6 @@
* SOFTWARE.
*/
'use strict';
/**
* Creates a virtually-rendered scrollable list.
* @param {object} config

View File

@ -1,4 +1,3 @@
"use strict";
import { hex, rgb2bgr, rle_unpack } from "../common/util";
import { ProjectWindows } from "./windows";

View File

@ -1,4 +1,3 @@
"use strict";
import $ = require("jquery");
import { CodeProject } from "./project";

View File

@ -1,4 +1,3 @@
"use strict";
import { Platform, getOpcodeMetadata_6502, getToolForFilename_6502, Base6502MachinePlatform } from "../common/baseplatform";
import { PLATFORMS, Keys, makeKeycodeMap } from "../common/emu";

View File

@ -1,4 +1,3 @@
"use strict";
import { PLATFORMS } from "../common/emu";
import { Platform } from "../common/baseplatform";

View File

@ -1,4 +1,3 @@
"use strict";
import { Midway8080 } from "../machine/mw8080bw";
import { BaseZ80MachinePlatform } from "../common/baseplatform";

View File

@ -1,4 +1,3 @@
"use strict";
import { Platform, BaseZ80Platform } from "../common/baseplatform";
import { PLATFORMS, RAM, newAddressDecoder, padBytes, noise, setKeyboardFromMap, AnimationTimer, RasterVideo, Keys, makeKeycodeMap } from "../common/emu";

View File

@ -1,4 +1,3 @@
"use strict";
import { Z80, Z80State } from "../common/cpu/ZilogZ80";
import { BasicMachine, CPU, Bus } from "../common/devices";

View File

@ -1,4 +1,3 @@
"use strict";
import { Platform, BasePlatform, cpuStateToLongString_6502, dumpStackToString, DisasmLine, CpuState } from "../common/baseplatform";
import { PLATFORMS, dumpRAM, EmuHalt } from "../common/emu";

View File

@ -1,4 +1,3 @@
"use strict";
import { Platform, BaseZ80Platform, Base6502Platform } from "../common/baseplatform";
import { PLATFORMS, RAM, newAddressDecoder, padBytes, noise, setKeyboardFromMap, AnimationTimer, VectorVideo, Keys, makeKeycodeMap } from "../common/emu";