import type { AnalysisContext } from '@hey-api/codegen-core'; import { py } from '../../ts-python'; import { PyDsl } from '../base'; const Mixed = PyDsl; export class ContinuePyDsl extends Mixed { readonly '~dsl' = 'ContinuePyDsl'; override analyze(_ctx: AnalysisContext): void { super.analyze(_ctx); } override toAst(): py.ContinueStatement { return py.factory.createContinueStatement(); } }