-
Notifications
You must be signed in to change notification settings - Fork 35
/
Copy pathIdentifier.ts
169 lines (156 loc) · 5.36 KB
/
Identifier.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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
import isReference, { type NodeWithFieldDefinition } from 'is-reference';
import type MagicString from 'magic-string';
import type { NormalizedTreeshakingOptions } from '../../rollup/types';
import { BLANK } from '../../utils/blank';
import type { NodeRenderOptions, RenderOptions } from '../../utils/renderHelpers';
import type { HasEffectsContext, InclusionContext } from '../ExecutionContext';
import { createHasEffectsContext } from '../ExecutionContext';
import { INTERACTION_ACCESSED, NODE_INTERACTION_UNKNOWN_ACCESS } from '../NodeInteractions';
import type FunctionScope from '../scopes/FunctionScope';
import type { ObjectPath } from '../utils/PathTracker';
import { EMPTY_PATH, SHARED_RECURSION_TRACKER, UnknownKey } from '../utils/PathTracker';
import type LocalVariable from '../variables/LocalVariable';
import type Variable from '../variables/Variable';
import * as NodeType from './NodeType';
import { Flag, isFlagSet, setFlag } from './shared/BitFlags';
import { type ExpressionEntity } from './shared/Expression';
import IdentifierBase from './shared/IdentifierBase';
import { ObjectMember } from './shared/ObjectMember';
import type { DeclarationPatternNode } from './shared/Pattern';
import type { VariableKind } from './shared/VariableKinds';
export type IdentifierWithVariable = Identifier & { variable: Variable };
export default class Identifier extends IdentifierBase implements DeclarationPatternNode {
name!: string;
type!: NodeType.tIdentifier;
variable: Variable | null = null;
private get isDestructuringDeoptimized(): boolean {
return isFlagSet(this.flags, Flag.destructuringDeoptimized);
}
private set isDestructuringDeoptimized(value: boolean) {
this.flags = setFlag(this.flags, Flag.destructuringDeoptimized, value);
}
addExportedVariables(
variables: Variable[],
exportNamesByVariable: ReadonlyMap<Variable, readonly string[]>
): void {
if (exportNamesByVariable.has(this.variable!)) {
variables.push(this.variable!);
}
}
bind(): void {
if (!this.variable && isReference(this, this.parent as NodeWithFieldDefinition)) {
this.variable = this.scope.findVariable(this.name);
this.variable.addReference(this);
this.isVariableReference = true;
}
}
declare(
kind: VariableKind,
destructuredInitPath: ObjectPath,
init: ExpressionEntity
): LocalVariable[] {
let variable: LocalVariable;
const { treeshake } = this.scope.context.options;
if (kind === 'parameter') {
variable = (this.scope as FunctionScope).addParameterDeclaration(this, destructuredInitPath);
} else {
variable = this.scope.addDeclaration(
this,
this.scope.context,
init,
destructuredInitPath,
kind
);
if (kind === 'var' && treeshake && treeshake.correctVarValueBeforeDeclaration) {
// Necessary to make sure the init is deoptimized. We cannot call deoptimizePath here.
variable.markInitializersForDeoptimization();
}
}
return [(this.variable = variable)];
}
deoptimizeAssignment(destructuredInitPath: ObjectPath, init: ExpressionEntity) {
this.deoptimizePath(EMPTY_PATH);
init.deoptimizePath([...destructuredInitPath, UnknownKey]);
}
hasEffectsWhenDestructuring(
context: HasEffectsContext,
destructuredInitPath: ObjectPath,
init: ExpressionEntity
): boolean {
return (
destructuredInitPath.length > 0 &&
init.hasEffectsOnInteractionAtPath(
destructuredInitPath,
NODE_INTERACTION_UNKNOWN_ACCESS,
context
)
);
}
includeDestructuredIfNecessary(
context: InclusionContext,
destructuredInitPath: ObjectPath,
init: ExpressionEntity
): boolean {
if (destructuredInitPath.length > 0 && !this.isDestructuringDeoptimized) {
this.isDestructuringDeoptimized = true;
init.deoptimizeArgumentsOnInteractionAtPath(
{
args: [new ObjectMember(init, destructuredInitPath.slice(0, -1))],
type: INTERACTION_ACCESSED
},
destructuredInitPath,
SHARED_RECURSION_TRACKER
);
}
const { propertyReadSideEffects } = this.scope.context.options
.treeshake as NormalizedTreeshakingOptions;
if (
(this.included ||=
destructuredInitPath.length > 0 &&
!context.brokenFlow &&
propertyReadSideEffects &&
(propertyReadSideEffects === 'always' ||
init.hasEffectsOnInteractionAtPath(
destructuredInitPath,
NODE_INTERACTION_UNKNOWN_ACCESS,
createHasEffectsContext()
)))
) {
if (this.variable && !this.variable.included) {
this.scope.context.includeVariableInModule(this.variable, EMPTY_PATH, context);
}
init.includePath(destructuredInitPath, context);
return true;
}
return false;
}
markDeclarationReached(): void {
this.variable!.initReached = true;
}
render(
code: MagicString,
{ snippets: { getPropertyAccess }, useOriginalName }: RenderOptions,
{ renderedParentType, isCalleeOfRenderedParent, isShorthandProperty }: NodeRenderOptions = BLANK
): void {
if (this.variable) {
const name = this.variable.getName(getPropertyAccess, useOriginalName);
if (name !== this.name) {
code.overwrite(this.start, this.end, name, {
contentOnly: true,
storeName: true
});
if (isShorthandProperty) {
code.prependRight(this.start, `${this.name}: `);
}
}
// In strict mode, any variable named "eval" must be the actual "eval" function
if (
name === 'eval' &&
renderedParentType === NodeType.CallExpression &&
isCalleeOfRenderedParent
) {
code.appendRight(this.start, '0, ');
}
}
}
}