Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix comment indentation to match code. #10916

Merged
merged 1 commit into from
Apr 15, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions src/preamble.js
Original file line number Diff line number Diff line change
Expand Up @@ -960,7 +960,7 @@ function createWasm() {
removeRunDependency('wasm-instantiate');
#endif
}
// we can't run yet (except in a pthread, where we have a custom sync instantiator)
// we can't run yet (except in a pthread, where we have a custom sync instantiator)
{{{ runOnMainThread("addRunDependency('wasm-instantiate');") }}}

#if LOAD_SOURCE_MAP
Expand Down Expand Up @@ -988,8 +988,8 @@ function createWasm() {
#if USE_PTHREADS
receiveInstance(output['instance'], output['module']);
#else
// TODO: Due to Closure regression https://github.com/google/closure-compiler/issues/3193, the above line no longer optimizes out down to the following line.
// When the regression is fixed, can restore the above USE_PTHREADS-enabled path.
// TODO: Due to Closure regression https://github.com/google/closure-compiler/issues/3193, the above line no longer optimizes out down to the following line.
// When the regression is fixed, can restore the above USE_PTHREADS-enabled path.
receiveInstance(output['instance']);
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

hmm, this still doesn't look aligned? (992 vs 993)

#endif
}
Expand Down