Skip to content

Commit ff85f27

Browse files
committed
oops
1 parent 1c26d8f commit ff85f27

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

packages/svelte/src/compiler/utils/builders.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -218,16 +218,16 @@ export function export_default(declaration) {
218218
* @param {ESTree.VariableDeclaration | ESTree.Pattern} left
219219
* @param {ESTree.Expression} right
220220
* @param {ESTree.Statement} body
221-
* @param {boolean} [await]
221+
* @param {boolean} [_await]
222222
* @returns {ESTree.ForOfStatement}
223223
*/
224-
export function for_of(left, right, body, await = false) {
224+
export function for_of(left, right, body, _await = false) {
225225
return {
226226
type: 'ForOfStatement',
227227
left,
228228
right,
229229
body,
230-
await
230+
await: _await
231231
};
232232
}
233233

0 commit comments

Comments
 (0)