fork of hey-api/openapi-ts because I need some additional things
1import type { AnalysisContext } from '@hey-api/codegen-core';
2
3import { py } from '../../ts-python';
4import { PyDsl } from '../base';
5
6export class NewlinePyDsl extends PyDsl<py.EmptyStatement> {
7 readonly '~dsl' = 'NewlinePyDsl';
8
9 override analyze(ctx: AnalysisContext): void {
10 super.analyze(ctx);
11 }
12
13 override toAst(): py.EmptyStatement {
14 return py.factory.createEmptyStatement();
15 }
16}