Skip to content

Commit 2beb5cd

Browse files
committed
fix lint
1 parent eec4fcc commit 2beb5cd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/context/script-let.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -352,7 +352,7 @@ export class ScriptLetContext {
352352
const callArrayFrom = (call.callee as ESTree.MemberExpression)
353353
.object as ESTree.CallExpression;
354354
const expr = callArrayFrom.arguments[0] as ESTree.Expression;
355-
const ctx = fn.params[0]!;
355+
const ctx = fn.params[0];
356356
const idx = (fn.params[1] ?? null) as ESTree.Identifier | null;
357357
const scope = result.getScope(fn.body);
358358

0 commit comments

Comments
 (0)