Lines Matching refs:labelSet
49 const compiler::TryLabelSet &labelSet) const in CompileFinally()
54 pg->Branch(this, labelSet.CatchEnd()); in CompileFinally()
56 pg->SetLabel(this, labelSet.CatchBegin()); in CompileFinally()
59 pg->SetLabel(this, labelSet.CatchEnd()); in CompileFinally()
78 const auto &labelSet = tryCtx.LabelSet(); in CompileTryCatchFinally() local
80 pg->SetLabel(this, labelSet.TryBegin()); in CompileTryCatchFinally()
95 pg->SetLabel(this, labelSet.TryEnd()); in CompileTryCatchFinally()
97 CompileFinally(pg, &tryCtx, labelSet); in CompileTryCatchFinally()
105 const auto &labelSet = tryCtx.LabelSet(); in CompileTryFinally() local
107 pg->SetLabel(this, labelSet.TryBegin()); in CompileTryFinally()
122 pg->SetLabel(this, labelSet.TryEnd()); in CompileTryFinally()
124 CompileFinally(pg, &tryCtx, labelSet); in CompileTryFinally()
132 const auto &labelSet = tryCtx.LabelSet(); in CompileTryCatch() local
134 pg->SetLabel(this, labelSet.TryBegin()); in CompileTryCatch()
136 pg->SetLabel(this, labelSet.TryEnd()); in CompileTryCatch()
138 pg->Branch(this, labelSet.CatchEnd()); in CompileTryCatch()
140 pg->SetLabel(this, labelSet.CatchBegin()); in CompileTryCatch()
142 pg->SetLabel(this, labelSet.CatchEnd()); in CompileTryCatch()