-
Notifications
You must be signed in to change notification settings - Fork 35
/
Copy pathPropertyDefinition.ts
91 lines (81 loc) · 2.88 KB
/
PropertyDefinition.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
import type { DeoptimizableEntity } from '../DeoptimizableEntity';
import type { HasEffectsContext, InclusionContext } from '../ExecutionContext';
import type { NodeInteraction, NodeInteractionCalled } from '../NodeInteractions';
import { checkEffectForNodes } from '../utils/checkEffectForNodes';
import type { EntityPathTracker, ObjectPath } from '../utils/PathTracker';
import { UNKNOWN_PATH } from '../utils/PathTracker';
import type Decorator from './Decorator';
import type * as NodeType from './NodeType';
import type PrivateIdentifier from './PrivateIdentifier';
import { Flag, isFlagSet, setFlag } from './shared/BitFlags';
import {
type ExpressionEntity,
type LiteralValueOrUnknown,
UNKNOWN_RETURN_EXPRESSION,
UnknownValue
} from './shared/Expression';
import { doNotDeoptimize, type ExpressionNode, NodeBase } from './shared/Node';
export default class PropertyDefinition extends NodeBase {
declare key: ExpressionNode | PrivateIdentifier;
declare static: boolean;
declare type: NodeType.tPropertyDefinition;
declare value: ExpressionNode | null;
declare decorators: Decorator[];
get computed(): boolean {
return isFlagSet(this.flags, Flag.computed);
}
set computed(value: boolean) {
this.flags = setFlag(this.flags, Flag.computed, value);
}
deoptimizeArgumentsOnInteractionAtPath(
interaction: NodeInteraction,
path: ObjectPath,
recursionTracker: EntityPathTracker
): void {
this.value?.deoptimizeArgumentsOnInteractionAtPath(interaction, path, recursionTracker);
}
deoptimizePath(path: ObjectPath): void {
this.value?.deoptimizePath(path);
}
getLiteralValueAtPath(
path: ObjectPath,
recursionTracker: EntityPathTracker,
origin: DeoptimizableEntity
): LiteralValueOrUnknown {
return this.value
? this.value.getLiteralValueAtPath(path, recursionTracker, origin)
: UnknownValue;
}
getReturnExpressionWhenCalledAtPath(
path: ObjectPath,
interaction: NodeInteractionCalled,
recursionTracker: EntityPathTracker,
origin: DeoptimizableEntity
): [expression: ExpressionEntity, isPure: boolean] {
return this.value
? this.value.getReturnExpressionWhenCalledAtPath(path, interaction, recursionTracker, origin)
: UNKNOWN_RETURN_EXPRESSION;
}
hasEffects(context: HasEffectsContext): boolean {
return (
this.key.hasEffects(context) ||
(this.static && !!this.value?.hasEffects(context)) ||
checkEffectForNodes(this.decorators, context)
);
}
hasEffectsOnInteractionAtPath(
path: ObjectPath,
interaction: NodeInteraction,
context: HasEffectsContext
): boolean {
return !this.value || this.value.hasEffectsOnInteractionAtPath(path, interaction, context);
}
includeNode(context: InclusionContext) {
this.included = true;
this.value?.includePath(UNKNOWN_PATH, context);
for (const decorator of this.decorators) {
decorator.includePath(UNKNOWN_PATH, context);
}
}
}
PropertyDefinition.prototype.applyDeoptimizations = doNotDeoptimize;