-
Notifications
You must be signed in to change notification settings - Fork 35
/
Copy pathAwaitExpression.ts
53 lines (46 loc) · 1.8 KB
/
AwaitExpression.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
import type { InclusionContext } from '../ExecutionContext';
import type { ObjectPath } from '../utils/PathTracker';
import ArrowFunctionExpression from './ArrowFunctionExpression';
import type * as NodeType from './NodeType';
import { Flag, isFlagSet, setFlag } from './shared/BitFlags';
import FunctionNode from './shared/FunctionNode';
import { type ExpressionNode, type IncludeChildren, type Node, NodeBase } from './shared/Node';
export default class AwaitExpression extends NodeBase {
declare argument: ExpressionNode;
declare type: NodeType.tAwaitExpression;
get isTopLevelAwait(): boolean {
return isFlagSet(this.flags, Flag.isTopLevelAwait);
}
set isTopLevelAwait(value: boolean) {
this.flags = setFlag(this.flags, Flag.isTopLevelAwait, value);
}
hasEffects(): boolean {
if (!this.deoptimized) this.applyDeoptimizations();
return true;
}
include(context: InclusionContext, includeChildrenRecursively: IncludeChildren): void {
if (!this.included) this.includeNode(context);
this.argument.include(context, includeChildrenRecursively);
}
includeNode(context: InclusionContext) {
this.included = true;
if (!this.deoptimized) this.applyDeoptimizations();
checkTopLevelAwait: {
let parent = this.parent;
do {
if (parent instanceof FunctionNode || parent instanceof ArrowFunctionExpression)
break checkTopLevelAwait;
} while ((parent = (parent as Node).parent as Node));
this.scope.context.usesTopLevelAwait = true;
this.isTopLevelAwait = true;
}
// Thenables need to be included
this.argument.includePath(THEN_PATH, context);
}
includePath(path: ObjectPath, context: InclusionContext): void {
if (!this.deoptimized) this.applyDeoptimizations();
if (!this.included) this.includeNode(context);
this.argument.includePath(path, context);
}
}
const THEN_PATH = ['then'];