pull/7738/head
Richard Harris 6 years ago
parent 7c5d377eef
commit bec5c9da02

@ -238,7 +238,7 @@ export default class Expression {
const { code } = component; const { code } = component;
let function_expression; let function_expression;
let pending_assignments = new Set(); let pending_assignments: Set<string> = new Set();
let dependencies: Set<string>; let dependencies: Set<string>;
let contextual_dependencies: Set<string>; let contextual_dependencies: Set<string>;

@ -336,7 +336,7 @@ describe('store', () => {
fn(42); fn(42);
return { return {
unsubscribe: () => {} unsubscribe: () => {}
} };
} }
}; };

Loading…
Cancel
Save