-
Notifications
You must be signed in to change notification settings - Fork 35
/
Copy pathBreakStatement.ts
40 lines (36 loc) · 1.17 KB
/
BreakStatement.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
import { type HasEffectsContext, type InclusionContext } from '../ExecutionContext';
import type Identifier from './Identifier';
import type * as NodeType from './NodeType';
import {
doNotDeoptimize,
type IncludeChildren,
onlyIncludeSelfNoDeoptimize,
StatementBase
} from './shared/Node';
export default class BreakStatement extends StatementBase {
declare label: Identifier | null;
declare type: NodeType.tBreakStatement;
hasEffects(context: HasEffectsContext): boolean {
if (this.label) {
if (!context.ignore.labels.has(this.label.name)) return true;
context.includedLabels.add(this.label.name);
} else {
if (!context.ignore.breaks) return true;
context.hasBreak = true;
}
context.brokenFlow = true;
return false;
}
include(context: InclusionContext, includeChildrenRecursively: IncludeChildren): void {
this.included = true;
if (this.label) {
this.label.include(context, includeChildrenRecursively);
context.includedLabels.add(this.label.name);
} else {
context.hasBreak = true;
}
context.brokenFlow = true;
}
}
BreakStatement.prototype.includeNode = onlyIncludeSelfNoDeoptimize;
BreakStatement.prototype.applyDeoptimizations = doNotDeoptimize;