Skip to content

Commit

Permalink
chore: make _computedsToAskDirty private
Browse files Browse the repository at this point in the history
  • Loading branch information
johnsoncodehk authored and yyx990803 committed Apr 5, 2023
1 parent 30a2d61 commit 0a2e3dc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/reactivity/src/computed.ts
Original file line number Diff line number Diff line change
Expand Up @@ -38,9 +38,9 @@ export class ComputedRefImpl<T> {
public readonly [ReactiveFlags.IS_READONLY]: boolean = false

public _dirty = true
public _computedsToAskDirty: ComputedRefImpl<any>[] = []
public _cacheable: boolean

private _computedsToAskDirty: ComputedRefImpl<any>[] = []
private _triggeredAfterLastEffect = false

constructor(
Expand Down

0 comments on commit 0a2e3dc

Please sign in to comment.