Searched refs:cfc (Results 1 – 4 of 4) sorted by relevance
/arkcompiler/ets_frontend/es2panda/compiler/core/ |
D | dynamicContext.cpp | 94 void LexEnvContext::AbortContext([[maybe_unused]] ControlFlowChange cfc, in AbortContext() argument 129 void IteratorContext::AbortContext([[maybe_unused]] ControlFlowChange cfc, in AbortContext() argument 132 if (cfc == ControlFlowChange::CONTINUE && target_.ContinueLabel() == targetLabel) { in AbortContext() 174 void DestructuringIteratorContext::AbortContext(ControlFlowChange cfc, const util::StringView &targ… in AbortContext() argument 176 if (cfc == ControlFlowChange::CONTINUE && target_.ContinueLabel() == targetLabel) { in AbortContext() 221 void TryContext::AbortContext([[maybe_unused]] ControlFlowChange cfc, in AbortContext() argument
|
D | dynamicContext.h | 47 virtual void AbortContext([[maybe_unused]] ControlFlowChange cfc, in AbortContext() argument 116 void AbortContext([[maybe_unused]] ControlFlowChange cfc, 146 void AbortContext([[maybe_unused]] ControlFlowChange cfc, 176 void AbortContext(ControlFlowChange cfc, const util::StringView &targetLabel) override; 226 void AbortContext([[maybe_unused]] ControlFlowChange cfc,
|
/arkcompiler/ets_frontend/ts2panda/src/statement/ |
D | tryStatement.ts | 199 abstract compileFinalizer(cfc: ControlFlowChange, continueTargetLabel: Label | undefined): void; 251 compileFinalizer(cfc: ControlFlowChange, continueTargetLabel: Label): void { 343 compileFinalizer(cfc: ControlFlowChange, continueTargetLabel: Label): void { 344 …if (cfc === ControlFlowChange.Break || continueTargetLabel != this.labelTarget.getContinueTargetLa…
|
/arkcompiler/ets_frontend/ts2panda/src/ |
D | compiler.ts | 631 …compileFinallyBeforeCFC(endTry: TryStatement | undefined, cfc: ControlFlowChange, continueTargetLa… 646 startTry.trybuilder.compileFinalizer(cfc, continueTargetLabel);
|