fork of hey-api/openapi-ts because I need some additional things
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

refactor: rename ts-python to py-compiler

Lubos e8d3d5c6 0d33fbc7

+55 -55
+3 -3
package.json
··· 25 25 "examples:check": "sh ./scripts/examples-check.sh", 26 26 "examples:generate": "sh ./scripts/examples-generate.sh", 27 27 "format": "oxfmt .", 28 - "format:next": "oxfmt . && uv run ruff format packages/openapi-python/src/ts-python/__snapshots__", 28 + "format:next": "oxfmt . && uv run ruff format packages/openapi-python/src/py-compiler/__snapshots__", 29 29 "lint": "oxfmt --check . && eslint .", 30 - "lint:next": "oxfmt --check . && eslint . && uv run ruff check packages/openapi-python/src/ts-python/__snapshots__", 30 + "lint:next": "oxfmt --check . && eslint . && uv run ruff check packages/openapi-python/src/py-compiler/__snapshots__", 31 31 "lint:fix": "oxfmt . && eslint . --fix", 32 - "lint:fix:next": "oxfmt . && eslint . --fix && uv run ruff check --fix packages/openapi-python/src/ts-python/__snapshots__", 32 + "lint:fix:next": "oxfmt . && eslint . --fix && uv run ruff check --fix packages/openapi-python/src/py-compiler/__snapshots__", 33 33 "prepare": "husky", 34 34 "test:changelog": "vitest run __tests__/*.test.ts", 35 35 "test:changelog:watch": "vitest watch __tests__/*.test.ts",
+1 -1
packages/openapi-python/package.json
··· 57 57 "dev": "tsdown --watch", 58 58 "prepublishOnly": "pnpm build", 59 59 "typecheck": "tsgo --noEmit", 60 - "typecheck:next": "tsc --noEmit && uv run mypy src/ts-python/__snapshots__" 60 + "typecheck:next": "tsc --noEmit && uv run mypy src/py-compiler/__snapshots__" 61 61 }, 62 62 "dependencies": { 63 63 "@hey-api/codegen-core": "workspace:*",
+1 -1
packages/openapi-python/src/py-dsl/base.ts
··· 15 15 import { fromRef, isNode, isRef, isSymbol, nodeBrand, ref } from '@hey-api/codegen-core'; 16 16 import type { AnyString } from '@hey-api/types'; 17 17 18 - import { py } from '../ts-python'; 18 + import { py } from '../py-compiler'; 19 19 import type { AccessOptions } from './utils/context'; 20 20 21 21 export abstract class PyDsl<T extends py.Node = py.Node> implements Node<T> {
+1 -1
packages/openapi-python/src/py-dsl/decl/class.ts
··· 1 1 import type { AnalysisContext, NodeName, Ref } from '@hey-api/codegen-core'; 2 2 import { isSymbol, ref } from '@hey-api/codegen-core'; 3 3 4 - import { py } from '../../ts-python'; 4 + import { py } from '../../py-compiler'; 5 5 import { type MaybePyDsl, PyDsl } from '../base'; 6 6 import { NewlinePyDsl } from '../layout/newline'; 7 7 import { DecoratorMixin } from '../mixins/decorator';
+1 -1
packages/openapi-python/src/py-dsl/decl/func.ts
··· 1 1 import type { AnalysisContext, NodeName, NodeNameSanitizer } from '@hey-api/codegen-core'; 2 2 import { isSymbol } from '@hey-api/codegen-core'; 3 3 4 - import { py } from '../../ts-python'; 4 + import { py } from '../../py-compiler'; 5 5 import { PyDsl } from '../base'; 6 6 import { DecoratorMixin } from '../mixins/decorator'; 7 7 import { DoMixin } from '../mixins/do';
+1 -1
packages/openapi-python/src/py-dsl/decl/param.ts
··· 1 1 import type { AnalysisContext, NodeName, Ref } from '@hey-api/codegen-core'; 2 2 import { ref } from '@hey-api/codegen-core'; 3 3 4 - import { py } from '../../ts-python'; 4 + import { py } from '../../py-compiler'; 5 5 import { PyDsl } from '../base'; 6 6 7 7 export type ParamDefaultValue = NodeName | py.Expression | undefined;
+1 -1
packages/openapi-python/src/py-dsl/expr/attr.ts
··· 1 1 import type { AnalysisContext, NodeName, Ref } from '@hey-api/codegen-core'; 2 2 import { fromRef, isSymbol, ref } from '@hey-api/codegen-core'; 3 3 4 - import { py } from '../../ts-python'; 4 + import { py } from '../../py-compiler'; 5 5 import type { MaybePyDsl } from '../base'; 6 6 import { PyDsl } from '../base'; 7 7 import { ExprMixin } from '../mixins/expr';
+1 -1
packages/openapi-python/src/py-dsl/expr/binary.ts
··· 1 1 import type { AnalysisContext, Ref } from '@hey-api/codegen-core'; 2 2 import { ref } from '@hey-api/codegen-core'; 3 3 4 - import { py } from '../../ts-python'; 4 + import { py } from '../../py-compiler'; 5 5 import type { MaybePyDsl } from '../base'; 6 6 import { PyDsl } from '../base'; 7 7
+1 -1
packages/openapi-python/src/py-dsl/expr/call.ts
··· 1 1 import type { AnalysisContext, NodeName, Ref } from '@hey-api/codegen-core'; 2 2 import { ref } from '@hey-api/codegen-core'; 3 3 4 - import { py } from '../../ts-python'; 4 + import { py } from '../../py-compiler'; 5 5 import type { MaybePyDsl } from '../base'; 6 6 import { PyDsl } from '../base'; 7 7 import { ArgsMixin } from '../mixins/args';
+1 -1
packages/openapi-python/src/py-dsl/expr/dict.ts
··· 1 1 import type { AnalysisContext } from '@hey-api/codegen-core'; 2 2 3 - import { py } from '../../ts-python'; 3 + import { py } from '../../py-compiler'; 4 4 import type { MaybePyDsl } from '../base'; 5 5 import { PyDsl } from '../base'; 6 6 import { LayoutMixin } from '../mixins/layout';
+1 -1
packages/openapi-python/src/py-dsl/expr/expr.ts
··· 1 1 import type { AnalysisContext, NodeName, Ref } from '@hey-api/codegen-core'; 2 2 import { isNode, isSymbol, ref } from '@hey-api/codegen-core'; 3 3 4 - import type { py } from '../../ts-python'; 4 + import type { py } from '../../py-compiler'; 5 5 import type { MaybePyDsl } from '../base'; 6 6 import { PyDsl } from '../base'; 7 7 import { ExprMixin } from '../mixins/expr';
+1 -1
packages/openapi-python/src/py-dsl/expr/identifier.ts
··· 1 1 import type { AnalysisContext, NodeName } from '@hey-api/codegen-core'; 2 2 3 - import { py } from '../../ts-python'; 3 + import { py } from '../../py-compiler'; 4 4 import { PyDsl } from '../base'; 5 5 6 6 const Mixed = PyDsl<py.Identifier>;
+1 -1
packages/openapi-python/src/py-dsl/expr/kwarg.ts
··· 1 1 import type { NodeName } from '@hey-api/codegen-core'; 2 2 3 - import { py } from '../../ts-python'; 3 + import { py } from '../../py-compiler'; 4 4 import type { MaybePyDsl } from '../base'; 5 5 import { PyDsl } from '../base'; 6 6
+1 -1
packages/openapi-python/src/py-dsl/expr/list.ts
··· 1 1 import type { AnalysisContext } from '@hey-api/codegen-core'; 2 2 3 - import { py } from '../../ts-python'; 3 + import { py } from '../../py-compiler'; 4 4 import type { MaybePyDsl } from '../base'; 5 5 import { PyDsl } from '../base'; 6 6 import { LayoutMixin } from '../mixins/layout';
+1 -1
packages/openapi-python/src/py-dsl/expr/literal.ts
··· 1 1 import type { AnalysisContext } from '@hey-api/codegen-core'; 2 2 3 - import { py } from '../../ts-python'; 3 + import { py } from '../../py-compiler'; 4 4 import { PyDsl } from '../base'; 5 5 6 6 export type LiteralValue = string | number | boolean | null;
+1 -1
packages/openapi-python/src/py-dsl/expr/set.ts
··· 1 1 import type { AnalysisContext } from '@hey-api/codegen-core'; 2 2 3 - import { py } from '../../ts-python'; 3 + import { py } from '../../py-compiler'; 4 4 import type { MaybePyDsl } from '../base'; 5 5 import { PyDsl } from '../base'; 6 6 import { LayoutMixin } from '../mixins/layout';
+1 -1
packages/openapi-python/src/py-dsl/expr/subscript.ts
··· 1 1 import type { AnalysisContext, NodeName, Ref } from '@hey-api/codegen-core'; 2 2 import { ref } from '@hey-api/codegen-core'; 3 3 4 - import { py } from '../../ts-python'; 4 + import { py } from '../../py-compiler'; 5 5 import { PyDsl } from '../base'; 6 6 import { LayoutMixin } from '../mixins/layout'; 7 7 import { f } from '../utils/factories';
+1 -1
packages/openapi-python/src/py-dsl/expr/tuple.ts
··· 1 1 import type { AnalysisContext, NodeName, Ref } from '@hey-api/codegen-core'; 2 2 import { ref } from '@hey-api/codegen-core'; 3 3 4 - import { py } from '../../ts-python'; 4 + import { py } from '../../py-compiler'; 5 5 import type { MaybePyDsl } from '../base'; 6 6 import { PyDsl } from '../base'; 7 7 import { LayoutMixin } from '../mixins/layout';
+1 -1
packages/openapi-python/src/py-dsl/index.ts
··· 1 1 import type { NodeName } from '@hey-api/codegen-core'; 2 2 3 - import type { py } from '../ts-python'; 3 + import type { py } from '../py-compiler'; 4 4 import { ClassPyDsl } from './decl/class'; 5 5 // import { DecoratorPyDsl } from './decl/decorator'; 6 6 // import { EnumPyDsl } from './decl/enum';
+1 -1
packages/openapi-python/src/py-dsl/layout/doc.ts
··· 1 1 import type { AnalysisContext } from '@hey-api/codegen-core'; 2 2 import type { MaybeArray } from '@hey-api/types'; 3 3 4 - import { py } from '../../ts-python'; 4 + import { py } from '../../py-compiler'; 5 5 import { PyDsl } from '../base'; 6 6 import type { PyDslContext } from '../utils/context'; 7 7 import { ctx } from '../utils/context';
+1 -1
packages/openapi-python/src/py-dsl/layout/hint.ts
··· 1 1 import type { AnalysisContext } from '@hey-api/codegen-core'; 2 2 import type { MaybeArray } from '@hey-api/types'; 3 3 4 - import { py } from '../../ts-python'; 4 + import { py } from '../../py-compiler'; 5 5 import { PyDsl } from '../base'; 6 6 import type { PyDslContext } from '../utils/context'; 7 7 import { ctx } from '../utils/context';
+1 -1
packages/openapi-python/src/py-dsl/layout/newline.ts
··· 1 1 import type { AnalysisContext } from '@hey-api/codegen-core'; 2 2 3 - import { py } from '../../ts-python'; 3 + import { py } from '../../py-compiler'; 4 4 import { PyDsl } from '../base'; 5 5 6 6 export class NewlinePyDsl extends PyDsl<py.EmptyStatement> {
+1 -1
packages/openapi-python/src/py-dsl/mixins/args.ts
··· 1 1 import type { AnalysisContext, Node, NodeName, Ref } from '@hey-api/codegen-core'; 2 2 import { ref } from '@hey-api/codegen-core'; 3 3 4 - import type { py } from '../../ts-python'; 4 + import type { py } from '../../py-compiler'; 5 5 import type { MaybePyDsl } from '../base'; 6 6 import type { BaseCtor, MixinCtor } from './types'; 7 7
+1 -1
packages/openapi-python/src/py-dsl/mixins/decorator.ts
··· 1 1 import type { AnalysisContext, NodeName, Ref } from '@hey-api/codegen-core'; 2 2 import { ref } from '@hey-api/codegen-core'; 3 3 4 - import { py } from '../../ts-python'; 4 + import { py } from '../../py-compiler'; 5 5 import type { MaybePyDsl } from '../base'; 6 6 import type { BaseCtor, MixinCtor } from './types'; 7 7
+1 -1
packages/openapi-python/src/py-dsl/mixins/do.ts
··· 1 1 import type { AnalysisContext, Node } from '@hey-api/codegen-core'; 2 2 3 - import type { py } from '../../ts-python'; 3 + import type { py } from '../../py-compiler'; 4 4 import type { MaybePyDsl } from '../base'; 5 5 import { StmtPyDsl } from '../stmt/stmt'; 6 6 import type { BaseCtor, MixinCtor } from './types';
+1 -1
packages/openapi-python/src/py-dsl/mixins/doc.ts
··· 1 1 import type { AnalysisContext, Node } from '@hey-api/codegen-core'; 2 2 3 - import type { py } from '../../ts-python'; 3 + import type { py } from '../../py-compiler'; 4 4 import type { DocFn, DocLines } from '../layout/doc'; 5 5 import { DocPyDsl } from '../layout/doc'; 6 6 import type { BaseCtor, MixinCtor } from './types';
+1 -1
packages/openapi-python/src/py-dsl/mixins/expr.ts
··· 1 1 import type { AnalysisContext, Node } from '@hey-api/codegen-core'; 2 2 3 - import type { py } from '../../ts-python'; 3 + import type { py } from '../../py-compiler'; 4 4 import { f } from '../utils/factories'; 5 5 import type { BaseCtor, DropFirst, MixinCtor } from './types'; 6 6
+1 -1
packages/openapi-python/src/py-dsl/mixins/hint.ts
··· 1 1 import type { AnalysisContext, Node } from '@hey-api/codegen-core'; 2 2 3 - import type { py } from '../../ts-python'; 3 + import type { py } from '../../py-compiler'; 4 4 import type { HintFn, HintLines } from '../layout/hint'; 5 5 import { HintPyDsl } from '../layout/hint'; 6 6 import type { BaseCtor, MixinCtor } from './types';
+1 -1
packages/openapi-python/src/py-dsl/mixins/layout.ts
··· 1 1 import type { AnalysisContext, Node } from '@hey-api/codegen-core'; 2 2 3 - import type { py } from '../../ts-python'; 3 + import type { py } from '../../py-compiler'; 4 4 import type { BaseCtor, MixinCtor } from './types'; 5 5 6 6 export interface LayoutMethods extends Node {
+1 -1
packages/openapi-python/src/py-dsl/mixins/modifiers.ts
··· 1 1 import type { AnalysisContext } from '@hey-api/codegen-core'; 2 2 3 - import { py } from '../../ts-python'; 3 + import { py } from '../../py-compiler'; 4 4 import type { BaseCtor, MixinCtor } from './types'; 5 5 6 6 export type Modifiers = {
+1 -1
packages/openapi-python/src/py-dsl/mixins/operator.ts
··· 1 1 import type { AnalysisContext, Node, NodeName } from '@hey-api/codegen-core'; 2 2 3 - import type { py } from '../../ts-python'; 3 + import type { py } from '../../py-compiler'; 4 4 import type { MaybePyDsl } from '../base'; 5 5 import { BinaryPyDsl } from '../expr/binary'; 6 6 import type { BaseCtor, MixinCtor } from './types';
+1 -1
packages/openapi-python/src/py-dsl/mixins/param.ts
··· 1 1 import type { AnalysisContext, Node } from '@hey-api/codegen-core'; 2 2 3 - import type { py } from '../../ts-python'; 3 + import type { py } from '../../py-compiler'; 4 4 import type { MaybePyDsl } from '../base'; 5 5 import type { ParamCtor, ParamFn, ParamName } from '../decl/param'; 6 6 import { ParamPyDsl } from '../decl/param';
+1 -1
packages/openapi-python/src/py-dsl/mixins/returns.ts
··· 1 1 import type { AnalysisContext, Node, NodeName, Ref } from '@hey-api/codegen-core'; 2 2 import { ref } from '@hey-api/codegen-core'; 3 3 4 - import type { py } from '../../ts-python'; 4 + import type { py } from '../../py-compiler'; 5 5 import type { BaseCtor, MixinCtor } from './types'; 6 6 7 7 export interface ReturnsMethods extends Node {
+1 -1
packages/openapi-python/src/py-dsl/mixins/types.ts
··· 1 - import type { py } from '../../ts-python'; 1 + import type { py } from '../../py-compiler'; 2 2 import type { PyDsl } from '../base'; 3 3 4 4 export type BaseCtor<T extends py.Node> = abstract new (...args: Array<any>) => PyDsl<T>;
+1 -1
packages/openapi-python/src/py-dsl/mixins/value.ts
··· 1 1 import type { AnalysisContext, Node, NodeName, Ref } from '@hey-api/codegen-core'; 2 2 import { ref } from '@hey-api/codegen-core'; 3 3 4 - import type { py } from '../../ts-python'; 4 + import type { py } from '../../py-compiler'; 5 5 import type { PyDsl } from '../base'; 6 6 import type { BaseCtor, MixinCtor } from './types'; 7 7
+1 -1
packages/openapi-python/src/py-dsl/stmt/block.ts
··· 1 1 import type { AnalysisContext } from '@hey-api/codegen-core'; 2 2 3 - import { py } from '../../ts-python'; 3 + import { py } from '../../py-compiler'; 4 4 import { PyDsl } from '../base'; 5 5 import type { DoExpr } from '../mixins/do'; 6 6 import { DoMixin } from '../mixins/do';
+1 -1
packages/openapi-python/src/py-dsl/stmt/break.ts
··· 1 1 import type { AnalysisContext } from '@hey-api/codegen-core'; 2 2 3 - import { py } from '../../ts-python'; 3 + import { py } from '../../py-compiler'; 4 4 import { PyDsl } from '../base'; 5 5 6 6 const Mixed = PyDsl<py.BreakStatement>;
+1 -1
packages/openapi-python/src/py-dsl/stmt/continue.ts
··· 1 1 import type { AnalysisContext } from '@hey-api/codegen-core'; 2 2 3 - import { py } from '../../ts-python'; 3 + import { py } from '../../py-compiler'; 4 4 import { PyDsl } from '../base'; 5 5 6 6 const Mixed = PyDsl<py.ContinueStatement>;
+1 -1
packages/openapi-python/src/py-dsl/stmt/for.ts
··· 1 1 import type { AnalysisContext } from '@hey-api/codegen-core'; 2 2 3 - import { py } from '../../ts-python'; 3 + import { py } from '../../py-compiler'; 4 4 import type { MaybePyDsl } from '../base'; 5 5 import { PyDsl } from '../base'; 6 6 import type { DoExpr } from '../mixins/do';
+1 -1
packages/openapi-python/src/py-dsl/stmt/if.ts
··· 1 1 import type { AnalysisContext } from '@hey-api/codegen-core'; 2 2 3 - import { py } from '../../ts-python'; 3 + import { py } from '../../py-compiler'; 4 4 import type { MaybePyDsl } from '../base'; 5 5 import { PyDsl } from '../base'; 6 6 import type { DoExpr } from '../mixins/do';
+1 -1
packages/openapi-python/src/py-dsl/stmt/import.ts
··· 1 1 import type { AnalysisContext } from '@hey-api/codegen-core'; 2 2 3 - import { py } from '../../ts-python'; 3 + import { py } from '../../py-compiler'; 4 4 import { PyDsl } from '../base'; 5 5 6 6 type ImportName = { alias?: string; name: string };
+1 -1
packages/openapi-python/src/py-dsl/stmt/raise.ts
··· 1 1 import type { AnalysisContext } from '@hey-api/codegen-core'; 2 2 3 - import { py } from '../../ts-python'; 3 + import { py } from '../../py-compiler'; 4 4 import type { MaybePyDsl } from '../base'; 5 5 import { PyDsl } from '../base'; 6 6 // import { LiteralPyDsl } from '../expr/literal';
+1 -1
packages/openapi-python/src/py-dsl/stmt/return.ts
··· 1 1 import type { AnalysisContext, NodeName, Ref } from '@hey-api/codegen-core'; 2 2 import { ref } from '@hey-api/codegen-core'; 3 3 4 - import { py } from '../../ts-python'; 4 + import { py } from '../../py-compiler'; 5 5 import type { MaybePyDsl } from '../base'; 6 6 import { PyDsl } from '../base'; 7 7 import { f } from '../utils/factories';
+1 -1
packages/openapi-python/src/py-dsl/stmt/stmt.ts
··· 1 1 import type { AnalysisContext } from '@hey-api/codegen-core'; 2 2 3 - import { py } from '../../ts-python'; 3 + import { py } from '../../py-compiler'; 4 4 import { PyDsl } from '../base'; 5 5 6 6 const Mixed = PyDsl<py.Statement>;
+1 -1
packages/openapi-python/src/py-dsl/stmt/try.ts
··· 2 2 import { ref } from '@hey-api/codegen-core'; 3 3 import type { MaybeArray } from '@hey-api/types'; 4 4 5 - import { py } from '../../ts-python'; 5 + import { py } from '../../py-compiler'; 6 6 import type { MaybePyDsl } from '../base'; 7 7 import { PyDsl } from '../base'; 8 8 import type { DoExpr } from '../mixins/do';
+1 -1
packages/openapi-python/src/py-dsl/stmt/var.ts
··· 1 1 import type { AnalysisContext, NodeName, Ref } from '@hey-api/codegen-core'; 2 2 import { isSymbol, ref } from '@hey-api/codegen-core'; 3 3 4 - import { py } from '../../ts-python'; 4 + import { py } from '../../py-compiler'; 5 5 import { PyDsl } from '../base'; 6 6 import { ValueMixin } from '../mixins/value'; 7 7 import { safeRuntimeName } from '../utils/name';
+1 -1
packages/openapi-python/src/py-dsl/stmt/while.ts
··· 1 1 import type { AnalysisContext } from '@hey-api/codegen-core'; 2 2 3 - import { py } from '../../ts-python'; 3 + import { py } from '../../py-compiler'; 4 4 import type { MaybePyDsl } from '../base'; 5 5 import { PyDsl } from '../base'; 6 6 import type { DoExpr } from '../mixins/do';
+1 -1
packages/openapi-python/src/py-dsl/stmt/with.ts
··· 1 1 import type { AnalysisContext } from '@hey-api/codegen-core'; 2 2 3 - import { py } from '../../ts-python'; 3 + import { py } from '../../py-compiler'; 4 4 import type { MaybePyDsl } from '../base'; 5 5 import { PyDsl } from '../base'; 6 6 import type { DoExpr } from '../mixins/do';
+1 -1
packages/openapi-python/src/py-dsl/utils/context.ts
··· 3 3 // import { isSymbol } from '@hey-api/codegen-core'; 4 4 import type { MaybeFunc } from '@hey-api/types'; 5 5 6 + import type { py } from '../../py-compiler'; 6 7 import type { DollarPyDsl } from '../../py-dsl'; 7 - import type { py } from '../../ts-python'; 8 8 // import { $, PythonRenderer } from '../../py-dsl'; 9 9 import type { PyDsl } from '../base'; 10 10 import type { CallArgs } from '../expr/call';
+1 -1
packages/openapi-python/src/py-dsl/utils/lazy.ts
··· 1 1 import type { AnalysisContext } from '@hey-api/codegen-core'; 2 2 3 - import type { py } from '../../ts-python'; 3 + import type { py } from '../../py-compiler'; 4 4 import { PyDsl } from '../base'; 5 5 import type { PyDslContext } from './context'; 6 6 import { ctx } from './context';
+1 -1
packages/openapi-python/src/py-dsl/utils/render-utils.ts
··· 2 2 3 3 import type { ExportModule, File, ImportModule } from '@hey-api/codegen-core'; 4 4 5 - import { py } from '../../ts-python'; 5 + import { py } from '../../py-compiler'; 6 6 7 7 const printer = py.createPrinter({ 8 8 indentSize: 4,
+1 -1
packages/openapi-python/src/py-dsl/utils/render.ts
··· 1 1 import type { RenderContext, Renderer } from '@hey-api/codegen-core'; 2 2 import type { MaybeArray, MaybeFunc } from '@hey-api/types'; 3 3 4 + import { py } from '../../py-compiler'; 4 5 import type { PyDsl } from '../../py-dsl'; 5 - import { py } from '../../ts-python'; 6 6 import type { ModuleExport, ModuleImport, SortGroup, SortKey, SortModule } from './render-utils'; 7 7 import { astToString, moduleSortKey } from './render-utils'; 8 8
packages/openapi-python/src/ts-python/__snapshots__/__init__.py packages/openapi-python/src/py-compiler/__snapshots__/__init__.py
packages/openapi-python/src/ts-python/__snapshots__/nodes/__init__.py packages/openapi-python/src/py-compiler/__snapshots__/nodes/__init__.py
packages/openapi-python/src/ts-python/__snapshots__/nodes/declarations/__init__.py packages/openapi-python/src/py-compiler/__snapshots__/nodes/declarations/__init__.py
packages/openapi-python/src/ts-python/__snapshots__/nodes/declarations/class/__init__.py packages/openapi-python/src/py-compiler/__snapshots__/nodes/declarations/class/__init__.py
packages/openapi-python/src/ts-python/__snapshots__/nodes/declarations/class/default.py packages/openapi-python/src/py-compiler/__snapshots__/nodes/declarations/class/default.py
packages/openapi-python/src/ts-python/__snapshots__/nodes/declarations/class/with-decorators.py packages/openapi-python/src/py-compiler/__snapshots__/nodes/declarations/class/with-decorators.py
packages/openapi-python/src/ts-python/__snapshots__/nodes/declarations/class/with-docstring.py packages/openapi-python/src/py-compiler/__snapshots__/nodes/declarations/class/with-docstring.py
packages/openapi-python/src/ts-python/__snapshots__/nodes/declarations/class/with-extends.py packages/openapi-python/src/py-compiler/__snapshots__/nodes/declarations/class/with-extends.py
packages/openapi-python/src/ts-python/__snapshots__/nodes/declarations/class/with-method-docstring.py packages/openapi-python/src/py-compiler/__snapshots__/nodes/declarations/class/with-method-docstring.py
packages/openapi-python/src/ts-python/__snapshots__/nodes/declarations/class/with-method.py packages/openapi-python/src/py-compiler/__snapshots__/nodes/declarations/class/with-method.py
packages/openapi-python/src/ts-python/__snapshots__/nodes/declarations/function/__init__.py packages/openapi-python/src/py-compiler/__snapshots__/nodes/declarations/function/__init__.py
packages/openapi-python/src/ts-python/__snapshots__/nodes/declarations/function/default.py packages/openapi-python/src/py-compiler/__snapshots__/nodes/declarations/function/default.py
packages/openapi-python/src/ts-python/__snapshots__/nodes/declarations/function/with-annotations-defaults-return.py packages/openapi-python/src/py-compiler/__snapshots__/nodes/declarations/function/with-annotations-defaults-return.py
packages/openapi-python/src/ts-python/__snapshots__/nodes/declarations/function/with-body.py packages/openapi-python/src/py-compiler/__snapshots__/nodes/declarations/function/with-body.py
packages/openapi-python/src/ts-python/__snapshots__/nodes/declarations/function/with-decorators.py packages/openapi-python/src/py-compiler/__snapshots__/nodes/declarations/function/with-decorators.py
packages/openapi-python/src/ts-python/__snapshots__/nodes/declarations/function/with-docstring.py packages/openapi-python/src/py-compiler/__snapshots__/nodes/declarations/function/with-docstring.py
packages/openapi-python/src/ts-python/__snapshots__/nodes/expressions/__init__.py packages/openapi-python/src/py-compiler/__snapshots__/nodes/expressions/__init__.py
packages/openapi-python/src/ts-python/__snapshots__/nodes/expressions/await/__init__.py packages/openapi-python/src/py-compiler/__snapshots__/nodes/expressions/await/__init__.py
packages/openapi-python/src/ts-python/__snapshots__/nodes/expressions/await/inside-function.py packages/openapi-python/src/py-compiler/__snapshots__/nodes/expressions/await/inside-function.py
packages/openapi-python/src/ts-python/__snapshots__/nodes/expressions/binary/__init__.py packages/openapi-python/src/py-compiler/__snapshots__/nodes/expressions/binary/__init__.py
packages/openapi-python/src/ts-python/__snapshots__/nodes/expressions/binary/add.py packages/openapi-python/src/py-compiler/__snapshots__/nodes/expressions/binary/add.py
packages/openapi-python/src/ts-python/__snapshots__/nodes/expressions/binary/subtract.py packages/openapi-python/src/py-compiler/__snapshots__/nodes/expressions/binary/subtract.py
packages/openapi-python/src/ts-python/__snapshots__/nodes/expressions/call/__init__.py packages/openapi-python/src/py-compiler/__snapshots__/nodes/expressions/call/__init__.py
packages/openapi-python/src/ts-python/__snapshots__/nodes/expressions/call/call.py packages/openapi-python/src/py-compiler/__snapshots__/nodes/expressions/call/call.py
packages/openapi-python/src/ts-python/__snapshots__/nodes/expressions/comprehensions/__init__.py packages/openapi-python/src/py-compiler/__snapshots__/nodes/expressions/comprehensions/__init__.py
packages/openapi-python/src/ts-python/__snapshots__/nodes/expressions/comprehensions/dict/__init__.py packages/openapi-python/src/py-compiler/__snapshots__/nodes/expressions/comprehensions/dict/__init__.py
packages/openapi-python/src/ts-python/__snapshots__/nodes/expressions/comprehensions/dict/dict.py packages/openapi-python/src/py-compiler/__snapshots__/nodes/expressions/comprehensions/dict/dict.py
packages/openapi-python/src/ts-python/__snapshots__/nodes/expressions/comprehensions/list/__init__.py packages/openapi-python/src/py-compiler/__snapshots__/nodes/expressions/comprehensions/list/__init__.py
packages/openapi-python/src/ts-python/__snapshots__/nodes/expressions/comprehensions/list/list.py packages/openapi-python/src/py-compiler/__snapshots__/nodes/expressions/comprehensions/list/list.py
packages/openapi-python/src/ts-python/__snapshots__/nodes/expressions/comprehensions/nested/__init__.py packages/openapi-python/src/py-compiler/__snapshots__/nodes/expressions/comprehensions/nested/__init__.py
packages/openapi-python/src/ts-python/__snapshots__/nodes/expressions/comprehensions/nested/dict-list.py packages/openapi-python/src/py-compiler/__snapshots__/nodes/expressions/comprehensions/nested/dict-list.py
packages/openapi-python/src/ts-python/__snapshots__/nodes/expressions/comprehensions/set/__init__.py packages/openapi-python/src/py-compiler/__snapshots__/nodes/expressions/comprehensions/set/__init__.py
packages/openapi-python/src/ts-python/__snapshots__/nodes/expressions/comprehensions/set/dict.py packages/openapi-python/src/py-compiler/__snapshots__/nodes/expressions/comprehensions/set/dict.py
packages/openapi-python/src/ts-python/__snapshots__/nodes/expressions/dict/__init__.py packages/openapi-python/src/py-compiler/__snapshots__/nodes/expressions/dict/__init__.py
packages/openapi-python/src/ts-python/__snapshots__/nodes/expressions/dict/dict.py packages/openapi-python/src/py-compiler/__snapshots__/nodes/expressions/dict/dict.py
packages/openapi-python/src/ts-python/__snapshots__/nodes/expressions/fString/__init__.py packages/openapi-python/src/py-compiler/__snapshots__/nodes/expressions/fString/__init__.py
packages/openapi-python/src/ts-python/__snapshots__/nodes/expressions/fString/multiple-expressions.py packages/openapi-python/src/py-compiler/__snapshots__/nodes/expressions/fString/multiple-expressions.py
packages/openapi-python/src/ts-python/__snapshots__/nodes/expressions/fString/simple-interpolation.py packages/openapi-python/src/py-compiler/__snapshots__/nodes/expressions/fString/simple-interpolation.py
packages/openapi-python/src/ts-python/__snapshots__/nodes/expressions/generator/__init__.py packages/openapi-python/src/py-compiler/__snapshots__/nodes/expressions/generator/__init__.py
packages/openapi-python/src/ts-python/__snapshots__/nodes/expressions/generator/async.py packages/openapi-python/src/py-compiler/__snapshots__/nodes/expressions/generator/async.py
packages/openapi-python/src/ts-python/__snapshots__/nodes/expressions/generator/simple.py packages/openapi-python/src/py-compiler/__snapshots__/nodes/expressions/generator/simple.py
packages/openapi-python/src/ts-python/__snapshots__/nodes/expressions/generator/with-filter.py packages/openapi-python/src/py-compiler/__snapshots__/nodes/expressions/generator/with-filter.py
packages/openapi-python/src/ts-python/__snapshots__/nodes/expressions/identifier/__init__.py packages/openapi-python/src/py-compiler/__snapshots__/nodes/expressions/identifier/__init__.py
packages/openapi-python/src/ts-python/__snapshots__/nodes/expressions/identifier/identifier.py packages/openapi-python/src/py-compiler/__snapshots__/nodes/expressions/identifier/identifier.py
packages/openapi-python/src/ts-python/__snapshots__/nodes/expressions/kwarg/__init__.py packages/openapi-python/src/py-compiler/__snapshots__/nodes/expressions/kwarg/__init__.py
packages/openapi-python/src/ts-python/__snapshots__/nodes/expressions/kwarg/multiple.py packages/openapi-python/src/py-compiler/__snapshots__/nodes/expressions/kwarg/multiple.py
packages/openapi-python/src/ts-python/__snapshots__/nodes/expressions/kwarg/number.py packages/openapi-python/src/py-compiler/__snapshots__/nodes/expressions/kwarg/number.py
packages/openapi-python/src/ts-python/__snapshots__/nodes/expressions/kwarg/string.py packages/openapi-python/src/py-compiler/__snapshots__/nodes/expressions/kwarg/string.py
packages/openapi-python/src/ts-python/__snapshots__/nodes/expressions/lambda/__init__.py packages/openapi-python/src/py-compiler/__snapshots__/nodes/expressions/lambda/__init__.py
packages/openapi-python/src/ts-python/__snapshots__/nodes/expressions/lambda/simple.py packages/openapi-python/src/py-compiler/__snapshots__/nodes/expressions/lambda/simple.py
packages/openapi-python/src/ts-python/__snapshots__/nodes/expressions/lambda/with-params-and-default.py packages/openapi-python/src/py-compiler/__snapshots__/nodes/expressions/lambda/with-params-and-default.py
packages/openapi-python/src/ts-python/__snapshots__/nodes/expressions/list/__init__.py packages/openapi-python/src/py-compiler/__snapshots__/nodes/expressions/list/__init__.py
packages/openapi-python/src/ts-python/__snapshots__/nodes/expressions/list/list.py packages/openapi-python/src/py-compiler/__snapshots__/nodes/expressions/list/list.py
packages/openapi-python/src/ts-python/__snapshots__/nodes/expressions/literal/__init__.py packages/openapi-python/src/py-compiler/__snapshots__/nodes/expressions/literal/__init__.py
packages/openapi-python/src/ts-python/__snapshots__/nodes/expressions/literal/primitive.py packages/openapi-python/src/py-compiler/__snapshots__/nodes/expressions/literal/primitive.py
packages/openapi-python/src/ts-python/__snapshots__/nodes/expressions/set/__init__.py packages/openapi-python/src/py-compiler/__snapshots__/nodes/expressions/set/__init__.py
packages/openapi-python/src/ts-python/__snapshots__/nodes/expressions/set/set.py packages/openapi-python/src/py-compiler/__snapshots__/nodes/expressions/set/set.py
packages/openapi-python/src/ts-python/__snapshots__/nodes/expressions/subscript/__init__.py packages/openapi-python/src/py-compiler/__snapshots__/nodes/expressions/subscript/__init__.py
packages/openapi-python/src/ts-python/__snapshots__/nodes/expressions/subscript/index-access.py packages/openapi-python/src/py-compiler/__snapshots__/nodes/expressions/subscript/index-access.py
packages/openapi-python/src/ts-python/__snapshots__/nodes/expressions/subscript/multiple.py packages/openapi-python/src/py-compiler/__snapshots__/nodes/expressions/subscript/multiple.py
packages/openapi-python/src/ts-python/__snapshots__/nodes/expressions/subscript/nested.py packages/openapi-python/src/py-compiler/__snapshots__/nodes/expressions/subscript/nested.py
packages/openapi-python/src/ts-python/__snapshots__/nodes/expressions/subscript/single.py packages/openapi-python/src/py-compiler/__snapshots__/nodes/expressions/subscript/single.py
packages/openapi-python/src/ts-python/__snapshots__/nodes/expressions/tuple/__init__.py packages/openapi-python/src/py-compiler/__snapshots__/nodes/expressions/tuple/__init__.py
packages/openapi-python/src/ts-python/__snapshots__/nodes/expressions/tuple/tuple.py packages/openapi-python/src/py-compiler/__snapshots__/nodes/expressions/tuple/tuple.py
packages/openapi-python/src/ts-python/__snapshots__/nodes/expressions/yield/__init__.py packages/openapi-python/src/py-compiler/__snapshots__/nodes/expressions/yield/__init__.py
packages/openapi-python/src/ts-python/__snapshots__/nodes/expressions/yield/default.py packages/openapi-python/src/py-compiler/__snapshots__/nodes/expressions/yield/default.py
packages/openapi-python/src/ts-python/__snapshots__/nodes/expressions/yield/from-iterable.py packages/openapi-python/src/py-compiler/__snapshots__/nodes/expressions/yield/from-iterable.py
packages/openapi-python/src/ts-python/__snapshots__/nodes/expressions/yield/with-value.py packages/openapi-python/src/py-compiler/__snapshots__/nodes/expressions/yield/with-value.py
packages/openapi-python/src/ts-python/__snapshots__/nodes/statements/__init__.py packages/openapi-python/src/py-compiler/__snapshots__/nodes/statements/__init__.py
packages/openapi-python/src/ts-python/__snapshots__/nodes/statements/assignment/__init__.py packages/openapi-python/src/py-compiler/__snapshots__/nodes/statements/assignment/__init__.py
packages/openapi-python/src/ts-python/__snapshots__/nodes/statements/assignment/annotation-only.py packages/openapi-python/src/py-compiler/__snapshots__/nodes/statements/assignment/annotation-only.py
packages/openapi-python/src/ts-python/__snapshots__/nodes/statements/assignment/annotation-with-value.py packages/openapi-python/src/py-compiler/__snapshots__/nodes/statements/assignment/annotation-with-value.py
packages/openapi-python/src/ts-python/__snapshots__/nodes/statements/assignment/complex-annotation.py packages/openapi-python/src/py-compiler/__snapshots__/nodes/statements/assignment/complex-annotation.py
packages/openapi-python/src/ts-python/__snapshots__/nodes/statements/assignment/optional-annotation.py packages/openapi-python/src/py-compiler/__snapshots__/nodes/statements/assignment/optional-annotation.py
packages/openapi-python/src/ts-python/__snapshots__/nodes/statements/assignment/primitive.py packages/openapi-python/src/py-compiler/__snapshots__/nodes/statements/assignment/primitive.py
packages/openapi-python/src/ts-python/__snapshots__/nodes/statements/augmentedAssignment/__init__.py packages/openapi-python/src/py-compiler/__snapshots__/nodes/statements/augmentedAssignment/__init__.py
packages/openapi-python/src/ts-python/__snapshots__/nodes/statements/augmentedAssignment/arithmetic.py packages/openapi-python/src/py-compiler/__snapshots__/nodes/statements/augmentedAssignment/arithmetic.py
packages/openapi-python/src/ts-python/__snapshots__/nodes/statements/augmentedAssignment/bitwise.py packages/openapi-python/src/py-compiler/__snapshots__/nodes/statements/augmentedAssignment/bitwise.py
packages/openapi-python/src/ts-python/__snapshots__/nodes/statements/block/__init__.py packages/openapi-python/src/py-compiler/__snapshots__/nodes/statements/block/__init__.py
packages/openapi-python/src/ts-python/__snapshots__/nodes/statements/block/function.py packages/openapi-python/src/py-compiler/__snapshots__/nodes/statements/block/function.py
packages/openapi-python/src/ts-python/__snapshots__/nodes/statements/break/__init__.py packages/openapi-python/src/py-compiler/__snapshots__/nodes/statements/break/__init__.py
packages/openapi-python/src/ts-python/__snapshots__/nodes/statements/break/while.py packages/openapi-python/src/py-compiler/__snapshots__/nodes/statements/break/while.py
packages/openapi-python/src/ts-python/__snapshots__/nodes/statements/continue/__init__.py packages/openapi-python/src/py-compiler/__snapshots__/nodes/statements/continue/__init__.py
packages/openapi-python/src/ts-python/__snapshots__/nodes/statements/continue/while.py packages/openapi-python/src/py-compiler/__snapshots__/nodes/statements/continue/while.py
packages/openapi-python/src/ts-python/__snapshots__/nodes/statements/expression/__init__.py packages/openapi-python/src/py-compiler/__snapshots__/nodes/statements/expression/__init__.py
packages/openapi-python/src/ts-python/__snapshots__/nodes/statements/expression/simple.py packages/openapi-python/src/py-compiler/__snapshots__/nodes/statements/expression/simple.py
packages/openapi-python/src/ts-python/__snapshots__/nodes/statements/for/__init__.py packages/openapi-python/src/py-compiler/__snapshots__/nodes/statements/for/__init__.py
packages/openapi-python/src/ts-python/__snapshots__/nodes/statements/for/for-else.py packages/openapi-python/src/py-compiler/__snapshots__/nodes/statements/for/for-else.py
packages/openapi-python/src/ts-python/__snapshots__/nodes/statements/for/for.py packages/openapi-python/src/py-compiler/__snapshots__/nodes/statements/for/for.py
packages/openapi-python/src/ts-python/__snapshots__/nodes/statements/if/__init__.py packages/openapi-python/src/py-compiler/__snapshots__/nodes/statements/if/__init__.py
packages/openapi-python/src/ts-python/__snapshots__/nodes/statements/if/if-else.py packages/openapi-python/src/py-compiler/__snapshots__/nodes/statements/if/if-else.py
packages/openapi-python/src/ts-python/__snapshots__/nodes/statements/if/if.py packages/openapi-python/src/py-compiler/__snapshots__/nodes/statements/if/if.py
packages/openapi-python/src/ts-python/__snapshots__/nodes/statements/import/__init__.py packages/openapi-python/src/py-compiler/__snapshots__/nodes/statements/import/__init__.py
packages/openapi-python/src/ts-python/__snapshots__/nodes/statements/import/from-with-alias.py packages/openapi-python/src/py-compiler/__snapshots__/nodes/statements/import/from-with-alias.py
packages/openapi-python/src/ts-python/__snapshots__/nodes/statements/import/from-with-asterisk.py packages/openapi-python/src/py-compiler/__snapshots__/nodes/statements/import/from-with-asterisk.py
packages/openapi-python/src/ts-python/__snapshots__/nodes/statements/import/from-with-name-alias.py packages/openapi-python/src/py-compiler/__snapshots__/nodes/statements/import/from-with-name-alias.py
packages/openapi-python/src/ts-python/__snapshots__/nodes/statements/import/from-with-name.py packages/openapi-python/src/py-compiler/__snapshots__/nodes/statements/import/from-with-name.py
packages/openapi-python/src/ts-python/__snapshots__/nodes/statements/import/module-with-alias.py packages/openapi-python/src/py-compiler/__snapshots__/nodes/statements/import/module-with-alias.py
packages/openapi-python/src/ts-python/__snapshots__/nodes/statements/import/module.py packages/openapi-python/src/py-compiler/__snapshots__/nodes/statements/import/module.py
packages/openapi-python/src/ts-python/__snapshots__/nodes/statements/raise/__init__.py packages/openapi-python/src/py-compiler/__snapshots__/nodes/statements/raise/__init__.py
packages/openapi-python/src/ts-python/__snapshots__/nodes/statements/raise/reraise.py packages/openapi-python/src/py-compiler/__snapshots__/nodes/statements/raise/reraise.py
packages/openapi-python/src/ts-python/__snapshots__/nodes/statements/raise/with-exception.py packages/openapi-python/src/py-compiler/__snapshots__/nodes/statements/raise/with-exception.py
packages/openapi-python/src/ts-python/__snapshots__/nodes/statements/return/__init__.py packages/openapi-python/src/py-compiler/__snapshots__/nodes/statements/return/__init__.py
packages/openapi-python/src/ts-python/__snapshots__/nodes/statements/return/function.py packages/openapi-python/src/py-compiler/__snapshots__/nodes/statements/return/function.py
packages/openapi-python/src/ts-python/__snapshots__/nodes/statements/try/__init__.py packages/openapi-python/src/py-compiler/__snapshots__/nodes/statements/try/__init__.py
packages/openapi-python/src/ts-python/__snapshots__/nodes/statements/try/with-except-else-finally.py packages/openapi-python/src/py-compiler/__snapshots__/nodes/statements/try/with-except-else-finally.py
packages/openapi-python/src/ts-python/__snapshots__/nodes/statements/try/with-except-else.py packages/openapi-python/src/py-compiler/__snapshots__/nodes/statements/try/with-except-else.py
packages/openapi-python/src/ts-python/__snapshots__/nodes/statements/try/with-except-finally.py packages/openapi-python/src/py-compiler/__snapshots__/nodes/statements/try/with-except-finally.py
packages/openapi-python/src/ts-python/__snapshots__/nodes/statements/try/with-except.py packages/openapi-python/src/py-compiler/__snapshots__/nodes/statements/try/with-except.py
packages/openapi-python/src/ts-python/__snapshots__/nodes/statements/try/with-finally.py packages/openapi-python/src/py-compiler/__snapshots__/nodes/statements/try/with-finally.py
packages/openapi-python/src/ts-python/__snapshots__/nodes/statements/while/__init__.py packages/openapi-python/src/py-compiler/__snapshots__/nodes/statements/while/__init__.py
packages/openapi-python/src/ts-python/__snapshots__/nodes/statements/while/while-else.py packages/openapi-python/src/py-compiler/__snapshots__/nodes/statements/while/while-else.py
packages/openapi-python/src/ts-python/__snapshots__/nodes/statements/while/while.py packages/openapi-python/src/py-compiler/__snapshots__/nodes/statements/while/while.py
packages/openapi-python/src/ts-python/__snapshots__/nodes/statements/with/__init__.py packages/openapi-python/src/py-compiler/__snapshots__/nodes/statements/with/__init__.py
packages/openapi-python/src/ts-python/__snapshots__/nodes/statements/with/with-alias.py packages/openapi-python/src/py-compiler/__snapshots__/nodes/statements/with/with-alias.py
packages/openapi-python/src/ts-python/__snapshots__/nodes/statements/with/with-async.py packages/openapi-python/src/py-compiler/__snapshots__/nodes/statements/with/with-async.py
packages/openapi-python/src/ts-python/__snapshots__/nodes/statements/with/with-many-items.py packages/openapi-python/src/py-compiler/__snapshots__/nodes/statements/with/with-many-items.py
packages/openapi-python/src/ts-python/__snapshots__/nodes/statements/with/with-tuple-alias.py packages/openapi-python/src/py-compiler/__snapshots__/nodes/statements/with/with-tuple-alias.py
packages/openapi-python/src/ts-python/__snapshots__/nodes/statements/with/with.py packages/openapi-python/src/py-compiler/__snapshots__/nodes/statements/with/with.py
packages/openapi-python/src/ts-python/__snapshots__/nodes/structure/__init__.py packages/openapi-python/src/py-compiler/__snapshots__/nodes/structure/__init__.py
packages/openapi-python/src/ts-python/__snapshots__/nodes/structure/comment/__init__.py packages/openapi-python/src/py-compiler/__snapshots__/nodes/structure/comment/__init__.py
packages/openapi-python/src/ts-python/__snapshots__/nodes/structure/comment/simple.py packages/openapi-python/src/py-compiler/__snapshots__/nodes/structure/comment/simple.py
packages/openapi-python/src/ts-python/__snapshots__/nodes/structure/sourceFile/__init__.py packages/openapi-python/src/py-compiler/__snapshots__/nodes/structure/sourceFile/__init__.py
packages/openapi-python/src/ts-python/__snapshots__/nodes/structure/sourceFile/simple.py packages/openapi-python/src/py-compiler/__snapshots__/nodes/structure/sourceFile/simple.py
packages/openapi-python/src/ts-python/__snapshots__/nodes/structure/sourceFile/with-docstring.py packages/openapi-python/src/py-compiler/__snapshots__/nodes/structure/sourceFile/with-docstring.py
packages/openapi-python/src/ts-python/__tests__/constants.ts packages/openapi-python/src/py-compiler/__tests__/constants.ts
packages/openapi-python/src/ts-python/__tests__/globalTeardown.ts packages/openapi-python/src/py-compiler/__tests__/globalTeardown.ts
packages/openapi-python/src/ts-python/__tests__/nodes/declarations/class.test.ts packages/openapi-python/src/py-compiler/__tests__/nodes/declarations/class.test.ts
packages/openapi-python/src/ts-python/__tests__/nodes/declarations/function.test.ts packages/openapi-python/src/py-compiler/__tests__/nodes/declarations/function.test.ts
packages/openapi-python/src/ts-python/__tests__/nodes/expressions/await.test.ts packages/openapi-python/src/py-compiler/__tests__/nodes/expressions/await.test.ts
packages/openapi-python/src/ts-python/__tests__/nodes/expressions/binary.test.ts packages/openapi-python/src/py-compiler/__tests__/nodes/expressions/binary.test.ts
packages/openapi-python/src/ts-python/__tests__/nodes/expressions/call.test.ts packages/openapi-python/src/py-compiler/__tests__/nodes/expressions/call.test.ts
packages/openapi-python/src/ts-python/__tests__/nodes/expressions/comprehensions/dict.test.ts packages/openapi-python/src/py-compiler/__tests__/nodes/expressions/comprehensions/dict.test.ts
packages/openapi-python/src/ts-python/__tests__/nodes/expressions/comprehensions/list.test.ts packages/openapi-python/src/py-compiler/__tests__/nodes/expressions/comprehensions/list.test.ts
packages/openapi-python/src/ts-python/__tests__/nodes/expressions/comprehensions/nested.test.ts packages/openapi-python/src/py-compiler/__tests__/nodes/expressions/comprehensions/nested.test.ts
packages/openapi-python/src/ts-python/__tests__/nodes/expressions/comprehensions/set.test.ts packages/openapi-python/src/py-compiler/__tests__/nodes/expressions/comprehensions/set.test.ts
packages/openapi-python/src/ts-python/__tests__/nodes/expressions/dict.test.ts packages/openapi-python/src/py-compiler/__tests__/nodes/expressions/dict.test.ts
packages/openapi-python/src/ts-python/__tests__/nodes/expressions/fString.test.ts packages/openapi-python/src/py-compiler/__tests__/nodes/expressions/fString.test.ts
packages/openapi-python/src/ts-python/__tests__/nodes/expressions/generator.test.ts packages/openapi-python/src/py-compiler/__tests__/nodes/expressions/generator.test.ts
packages/openapi-python/src/ts-python/__tests__/nodes/expressions/identifier.test.ts packages/openapi-python/src/py-compiler/__tests__/nodes/expressions/identifier.test.ts
packages/openapi-python/src/ts-python/__tests__/nodes/expressions/kwarg.test.ts packages/openapi-python/src/py-compiler/__tests__/nodes/expressions/kwarg.test.ts
packages/openapi-python/src/ts-python/__tests__/nodes/expressions/lambda.test.ts packages/openapi-python/src/py-compiler/__tests__/nodes/expressions/lambda.test.ts
packages/openapi-python/src/ts-python/__tests__/nodes/expressions/list.test.ts packages/openapi-python/src/py-compiler/__tests__/nodes/expressions/list.test.ts
packages/openapi-python/src/ts-python/__tests__/nodes/expressions/literal.test.ts packages/openapi-python/src/py-compiler/__tests__/nodes/expressions/literal.test.ts
packages/openapi-python/src/ts-python/__tests__/nodes/expressions/set.test.ts packages/openapi-python/src/py-compiler/__tests__/nodes/expressions/set.test.ts
packages/openapi-python/src/ts-python/__tests__/nodes/expressions/subscript.test.ts packages/openapi-python/src/py-compiler/__tests__/nodes/expressions/subscript.test.ts
packages/openapi-python/src/ts-python/__tests__/nodes/expressions/tuple.test.ts packages/openapi-python/src/py-compiler/__tests__/nodes/expressions/tuple.test.ts
packages/openapi-python/src/ts-python/__tests__/nodes/expressions/yield.test.ts packages/openapi-python/src/py-compiler/__tests__/nodes/expressions/yield.test.ts
packages/openapi-python/src/ts-python/__tests__/nodes/statements/assignment.test.ts packages/openapi-python/src/py-compiler/__tests__/nodes/statements/assignment.test.ts
packages/openapi-python/src/ts-python/__tests__/nodes/statements/augmentedAssignment.test.ts packages/openapi-python/src/py-compiler/__tests__/nodes/statements/augmentedAssignment.test.ts
packages/openapi-python/src/ts-python/__tests__/nodes/statements/block.test.ts packages/openapi-python/src/py-compiler/__tests__/nodes/statements/block.test.ts
packages/openapi-python/src/ts-python/__tests__/nodes/statements/break.test.ts packages/openapi-python/src/py-compiler/__tests__/nodes/statements/break.test.ts
packages/openapi-python/src/ts-python/__tests__/nodes/statements/continue.test.ts packages/openapi-python/src/py-compiler/__tests__/nodes/statements/continue.test.ts
packages/openapi-python/src/ts-python/__tests__/nodes/statements/expression.test.ts packages/openapi-python/src/py-compiler/__tests__/nodes/statements/expression.test.ts
packages/openapi-python/src/ts-python/__tests__/nodes/statements/for.test.ts packages/openapi-python/src/py-compiler/__tests__/nodes/statements/for.test.ts
packages/openapi-python/src/ts-python/__tests__/nodes/statements/if.test.ts packages/openapi-python/src/py-compiler/__tests__/nodes/statements/if.test.ts
packages/openapi-python/src/ts-python/__tests__/nodes/statements/import.test.ts packages/openapi-python/src/py-compiler/__tests__/nodes/statements/import.test.ts
packages/openapi-python/src/ts-python/__tests__/nodes/statements/raise.test.ts packages/openapi-python/src/py-compiler/__tests__/nodes/statements/raise.test.ts
packages/openapi-python/src/ts-python/__tests__/nodes/statements/return.test.ts packages/openapi-python/src/py-compiler/__tests__/nodes/statements/return.test.ts
packages/openapi-python/src/ts-python/__tests__/nodes/statements/try.test.ts packages/openapi-python/src/py-compiler/__tests__/nodes/statements/try.test.ts
packages/openapi-python/src/ts-python/__tests__/nodes/statements/while.test.ts packages/openapi-python/src/py-compiler/__tests__/nodes/statements/while.test.ts
packages/openapi-python/src/ts-python/__tests__/nodes/statements/with.test.ts packages/openapi-python/src/py-compiler/__tests__/nodes/statements/with.test.ts
packages/openapi-python/src/ts-python/__tests__/nodes/structure/comment.test.ts packages/openapi-python/src/py-compiler/__tests__/nodes/structure/comment.test.ts
packages/openapi-python/src/ts-python/__tests__/nodes/structure/sourceFile.test.ts packages/openapi-python/src/py-compiler/__tests__/nodes/structure/sourceFile.test.ts
+1 -1
packages/openapi-python/src/ts-python/__tests__/nodes/utils.ts packages/openapi-python/src/py-compiler/__tests__/nodes/utils.ts
··· 42 42 43 43 const caller = getCallerFile(); 44 44 const relPath = path 45 - .relative(path.join(process.cwd(), 'src', 'ts-python', '__tests__'), caller) 45 + .relative(path.join(process.cwd(), 'src', 'py-compiler', '__tests__'), caller) 46 46 .replace(/\.test\.ts$/, ''); 47 47 const outputPath = path.join(tmpDir, relPath, filename); 48 48 const outputDir = path.dirname(outputPath);
packages/openapi-python/src/ts-python/index.ts packages/openapi-python/src/py-compiler/index.ts
packages/openapi-python/src/ts-python/nodes/base.ts packages/openapi-python/src/py-compiler/nodes/base.ts
packages/openapi-python/src/ts-python/nodes/comprehension.ts packages/openapi-python/src/py-compiler/nodes/comprehension.ts
packages/openapi-python/src/ts-python/nodes/declarations/class.ts packages/openapi-python/src/py-compiler/nodes/declarations/class.ts
packages/openapi-python/src/ts-python/nodes/declarations/function.ts packages/openapi-python/src/py-compiler/nodes/declarations/function.ts
packages/openapi-python/src/ts-python/nodes/declarations/functionParameter.ts packages/openapi-python/src/py-compiler/nodes/declarations/functionParameter.ts
packages/openapi-python/src/ts-python/nodes/expression.ts packages/openapi-python/src/py-compiler/nodes/expression.ts
packages/openapi-python/src/ts-python/nodes/expressions/async.ts packages/openapi-python/src/py-compiler/nodes/expressions/async.ts
packages/openapi-python/src/ts-python/nodes/expressions/await.ts packages/openapi-python/src/py-compiler/nodes/expressions/await.ts
packages/openapi-python/src/ts-python/nodes/expressions/binary.ts packages/openapi-python/src/py-compiler/nodes/expressions/binary.ts
packages/openapi-python/src/ts-python/nodes/expressions/call.ts packages/openapi-python/src/py-compiler/nodes/expressions/call.ts
packages/openapi-python/src/ts-python/nodes/expressions/comprehensions/dict.ts packages/openapi-python/src/py-compiler/nodes/expressions/comprehensions/dict.ts
packages/openapi-python/src/ts-python/nodes/expressions/comprehensions/list.ts packages/openapi-python/src/py-compiler/nodes/expressions/comprehensions/list.ts
packages/openapi-python/src/ts-python/nodes/expressions/comprehensions/set.ts packages/openapi-python/src/py-compiler/nodes/expressions/comprehensions/set.ts
packages/openapi-python/src/ts-python/nodes/expressions/dict.ts packages/openapi-python/src/py-compiler/nodes/expressions/dict.ts
packages/openapi-python/src/ts-python/nodes/expressions/fString.ts packages/openapi-python/src/py-compiler/nodes/expressions/fString.ts
packages/openapi-python/src/ts-python/nodes/expressions/generator.ts packages/openapi-python/src/py-compiler/nodes/expressions/generator.ts
packages/openapi-python/src/ts-python/nodes/expressions/identifier.ts packages/openapi-python/src/py-compiler/nodes/expressions/identifier.ts
packages/openapi-python/src/ts-python/nodes/expressions/keywordArg.ts packages/openapi-python/src/py-compiler/nodes/expressions/keywordArg.ts
packages/openapi-python/src/ts-python/nodes/expressions/lambda.ts packages/openapi-python/src/py-compiler/nodes/expressions/lambda.ts
packages/openapi-python/src/ts-python/nodes/expressions/list.ts packages/openapi-python/src/py-compiler/nodes/expressions/list.ts
packages/openapi-python/src/ts-python/nodes/expressions/literal.ts packages/openapi-python/src/py-compiler/nodes/expressions/literal.ts
packages/openapi-python/src/ts-python/nodes/expressions/member.ts packages/openapi-python/src/py-compiler/nodes/expressions/member.ts
packages/openapi-python/src/ts-python/nodes/expressions/set.ts packages/openapi-python/src/py-compiler/nodes/expressions/set.ts
packages/openapi-python/src/ts-python/nodes/expressions/subscript-slice.ts packages/openapi-python/src/py-compiler/nodes/expressions/subscript-slice.ts
packages/openapi-python/src/ts-python/nodes/expressions/subscript.ts packages/openapi-python/src/py-compiler/nodes/expressions/subscript.ts
packages/openapi-python/src/ts-python/nodes/expressions/tuple.ts packages/openapi-python/src/py-compiler/nodes/expressions/tuple.ts
packages/openapi-python/src/ts-python/nodes/expressions/yield.ts packages/openapi-python/src/py-compiler/nodes/expressions/yield.ts
packages/openapi-python/src/ts-python/nodes/expressions/yieldFrom.ts packages/openapi-python/src/py-compiler/nodes/expressions/yieldFrom.ts
packages/openapi-python/src/ts-python/nodes/factory.ts packages/openapi-python/src/py-compiler/nodes/factory.ts
packages/openapi-python/src/ts-python/nodes/kinds.ts packages/openapi-python/src/py-compiler/nodes/kinds.ts
packages/openapi-python/src/ts-python/nodes/statement.ts packages/openapi-python/src/py-compiler/nodes/statement.ts
packages/openapi-python/src/ts-python/nodes/statements/assignment.ts packages/openapi-python/src/py-compiler/nodes/statements/assignment.ts
packages/openapi-python/src/ts-python/nodes/statements/augmentedAssignment.ts packages/openapi-python/src/py-compiler/nodes/statements/augmentedAssignment.ts
packages/openapi-python/src/ts-python/nodes/statements/block.ts packages/openapi-python/src/py-compiler/nodes/statements/block.ts
packages/openapi-python/src/ts-python/nodes/statements/break.ts packages/openapi-python/src/py-compiler/nodes/statements/break.ts
packages/openapi-python/src/ts-python/nodes/statements/continue.ts packages/openapi-python/src/py-compiler/nodes/statements/continue.ts
packages/openapi-python/src/ts-python/nodes/statements/empty.ts packages/openapi-python/src/py-compiler/nodes/statements/empty.ts
packages/openapi-python/src/ts-python/nodes/statements/except.ts packages/openapi-python/src/py-compiler/nodes/statements/except.ts
packages/openapi-python/src/ts-python/nodes/statements/expression.ts packages/openapi-python/src/py-compiler/nodes/statements/expression.ts
packages/openapi-python/src/ts-python/nodes/statements/for.ts packages/openapi-python/src/py-compiler/nodes/statements/for.ts
packages/openapi-python/src/ts-python/nodes/statements/if.ts packages/openapi-python/src/py-compiler/nodes/statements/if.ts
packages/openapi-python/src/ts-python/nodes/statements/import.ts packages/openapi-python/src/py-compiler/nodes/statements/import.ts
packages/openapi-python/src/ts-python/nodes/statements/raise.ts packages/openapi-python/src/py-compiler/nodes/statements/raise.ts
packages/openapi-python/src/ts-python/nodes/statements/return.ts packages/openapi-python/src/py-compiler/nodes/statements/return.ts
packages/openapi-python/src/ts-python/nodes/statements/try.ts packages/openapi-python/src/py-compiler/nodes/statements/try.ts
packages/openapi-python/src/ts-python/nodes/statements/while.ts packages/openapi-python/src/py-compiler/nodes/statements/while.ts
packages/openapi-python/src/ts-python/nodes/statements/with.ts packages/openapi-python/src/py-compiler/nodes/statements/with.ts
packages/openapi-python/src/ts-python/nodes/statements/withItem.ts packages/openapi-python/src/py-compiler/nodes/statements/withItem.ts
packages/openapi-python/src/ts-python/nodes/structure/comment.ts packages/openapi-python/src/py-compiler/nodes/structure/comment.ts
packages/openapi-python/src/ts-python/nodes/structure/sourceFile.ts packages/openapi-python/src/py-compiler/nodes/structure/sourceFile.ts
packages/openapi-python/src/ts-python/printer.ts packages/openapi-python/src/py-compiler/printer.ts