diff options
author | Bartek IwaĆczuk <biwanczuk@gmail.com> | 2021-01-17 00:32:59 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-01-17 00:32:59 +0100 |
commit | b26dcbc69d56b6ac5780520dad47f10460127d3e (patch) | |
tree | 1f0c45b2c39eff83a9fede7a9e6e268a5e04194b /runtime/js | |
parent | fc45a19801fe32eaf3a82ab8333f433fcfd7ca4e (diff) |
chore: Enforce ban-untagged-todo lint rule (#9135)
Diffstat (limited to 'runtime/js')
-rw-r--r-- | runtime/js/40_testing.js | 4 | ||||
-rw-r--r-- | runtime/js/99_main.js | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/runtime/js/40_testing.js b/runtime/js/40_testing.js index ce11150f4..f4f55e9a1 100644 --- a/runtime/js/40_testing.js +++ b/runtime/js/40_testing.js @@ -199,8 +199,8 @@ finishing test case.`; exposeForTest("reportToConsole", reportToConsole); - // TODO: already implements AsyncGenerator<RunTestsMessage>, but add as "implements to class" - // TODO: implements PromiseLike<RunTestsEndResult> + // TODO(bartlomieju): already implements AsyncGenerator<RunTestsMessage>, but add as "implements to class" + // TODO(bartlomieju): implements PromiseLike<RunTestsEndResult> class TestRunner { #usedOnly = false; diff --git a/runtime/js/99_main.js b/runtime/js/99_main.js index 440ea2a8a..b55074355 100644 --- a/runtime/js/99_main.js +++ b/runtime/js/99_main.js @@ -278,7 +278,7 @@ delete Object.prototype.__proto__; self: util.readOnly(globalThis), onmessage: util.writable(onmessage), onerror: util.writable(onerror), - // TODO: should be readonly? + // TODO(bartlomieju): should be readonly? close: util.nonEnumerable(workerClose), postMessage: util.writable(postMessage), workerMessageRecvCallback: util.nonEnumerable(workerMessageRecvCallback), |