exupery 0.0.1 → 0.1.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/generated/generic/resolve.d.ts +90 -0
- package/dist/generated/generic/resolve.js +249 -0
- package/dist/generated/implementation/schemas/typescript_light/migration_boilerplate.d.ts +5 -0
- package/dist/generated/implementation/schemas/typescript_light/migration_boilerplate.js +144 -0
- package/dist/generated/interface/core/poormans_parser.d.ts +184 -0
- package/dist/generated/interface/core/poormans_parser.js +3 -0
- package/dist/generated/interface/core/resolved.d.ts +100 -0
- package/dist/generated/interface/core/resolved.js +3 -0
- package/dist/generated/interface/core/unresolved.d.ts +35 -0
- package/dist/generated/interface/core/unresolved.js +3 -0
- package/dist/generated/interface/schemas/implementation/resolve.d.ts +437 -0
- package/dist/generated/interface/schemas/implementation/resolve.js +3 -0
- package/dist/generated/interface/schemas/implementation/resolved.d.ts +1912 -0
- package/dist/generated/interface/schemas/implementation/resolved.js +3 -0
- package/dist/generated/interface/schemas/implementation/unresolved.d.ts +1912 -0
- package/dist/generated/interface/schemas/implementation/unresolved.js +3 -0
- package/dist/generated/interface/schemas/interface/constrained/resolve.d.ts +437 -0
- package/dist/generated/interface/schemas/interface/constrained/resolve.js +3 -0
- package/dist/generated/interface/schemas/interface/resolve.d.ts +437 -0
- package/dist/generated/interface/schemas/interface/resolve.js +3 -0
- package/dist/generated/interface/schemas/interface/resolved.d.ts +622 -0
- package/dist/generated/interface/schemas/interface/resolved.js +3 -0
- package/dist/generated/interface/schemas/interface/unresolved.d.ts +622 -0
- package/dist/generated/interface/schemas/interface/unresolved.js +3 -0
- package/dist/generated/interface/schemas/typescript_light/migration_boilerplate.d.ts +90 -0
- package/dist/generated/interface/schemas/typescript_light/migration_boilerplate.js +3 -0
- package/dist/generated/interface/schemas/typescript_light/unconstrained.d.ts +966 -0
- package/dist/generated/interface/schemas/typescript_light/unconstrained.js +3 -0
- package/dist/globals.d.ts +24 -0
- package/dist/globals.js +2 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.js +5 -0
- package/dist/shorthands/implementation.d.ts +58 -0
- package/dist/shorthands/implementation.js +329 -0
- package/dist/shorthands/interface.d.ts +39 -0
- package/dist/shorthands/interface.js +146 -0
- package/dist/shorthands/typescript_light.d.ts +24 -0
- package/dist/shorthands/typescript_light.js +127 -0
- package/dist/transformations/implementation/fountain_pen.d.ts +6 -0
- package/dist/transformations/implementation/fountain_pen.js +36 -0
- package/dist/transformations/implementation/typescript.d.ts +24 -0
- package/dist/transformations/implementation/typescript.js +554 -0
- package/dist/transformations/interface/fountain_pen.d.ts +4 -0
- package/dist/transformations/interface/fountain_pen.js +47 -0
- package/dist/transformations/interface/typescript.d.ts +23 -0
- package/dist/transformations/interface/typescript.js +524 -0
- package/dist/transformations/typescript/fountain_pen.d.ts +15 -0
- package/dist/transformations/typescript/fountain_pen.js +281 -0
- package/dist/transformations/typescript/operations/create_identifier.d.ts +1 -0
- package/dist/transformations/typescript/operations/create_identifier.js +260 -0
- package/package.json +4 -1
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
+
if (k2 === undefined) k2 = k;
|
|
4
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
+
}
|
|
8
|
+
Object.defineProperty(o, k2, desc);
|
|
9
|
+
}) : (function(o, m, k, k2) {
|
|
10
|
+
if (k2 === undefined) k2 = k;
|
|
11
|
+
o[k2] = m[k];
|
|
12
|
+
}));
|
|
13
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
14
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
15
|
+
}) : function(o, v) {
|
|
16
|
+
o["default"] = v;
|
|
17
|
+
});
|
|
18
|
+
var __importStar = (this && this.__importStar) || function (mod) {
|
|
19
|
+
if (mod && mod.__esModule) return mod;
|
|
20
|
+
var result = {};
|
|
21
|
+
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
|
22
|
+
__setModuleDefault(result, mod);
|
|
23
|
+
return result;
|
|
24
|
+
};
|
|
25
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
26
|
+
exports.Module_Set = void 0;
|
|
27
|
+
const t_fountain_pen_block_to_semi_lines = __importStar(require("pareto-fountain-pen/dist/transformations/block/semi_lines"));
|
|
28
|
+
const t_fountain_pen_semi_lines_to_lines = __importStar(require("pareto-fountain-pen/dist/transformations/semi_lines/lines"));
|
|
29
|
+
const _typescript = __importStar(require("./typescript"));
|
|
30
|
+
const create_identifier_1 = require("../typescript/operations/create_identifier");
|
|
31
|
+
const pareto_standard_operations_1 = require("pareto-standard-operations");
|
|
32
|
+
const pareto_standard_operations_2 = require("pareto-standard-operations");
|
|
33
|
+
const op = {
|
|
34
|
+
// 'join lists': impure.list['join texts'],
|
|
35
|
+
'dictionary to list, sorted by code point': pareto_standard_operations_1.impure.dictionary['to list, sorted by code point'],
|
|
36
|
+
'create valid file name': pareto_standard_operations_1.impure.text['create valid file name'],
|
|
37
|
+
'repeat text': pareto_standard_operations_1.impure.text.repeat,
|
|
38
|
+
'join list of texts': pareto_standard_operations_2.pure.text['join list of texts'],
|
|
39
|
+
'flatten list': pareto_standard_operations_2.pure.list.flatten,
|
|
40
|
+
'flatten dictionary': pareto_standard_operations_2.pure.dictionary.flatten,
|
|
41
|
+
'create identifier': create_identifier_1.$$,
|
|
42
|
+
};
|
|
43
|
+
const Module_Set = ($, $p) => t_fountain_pen_semi_lines_to_lines.Directory(t_fountain_pen_block_to_semi_lines.Directory(_typescript.Module_Set($)), {
|
|
44
|
+
'indentation': $p.indentation,
|
|
45
|
+
});
|
|
46
|
+
exports.Module_Set = Module_Set;
|
|
47
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZm91bnRhaW5fcGVuLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vc3JjL3RyYW5zZm9ybWF0aW9ucy9pbnRlcmZhY2UvZm91bnRhaW5fcGVuLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiI7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7O0FBSUEsOEhBQStHO0FBQy9HLDhIQUErRztBQUUvRywwREFBMkM7QUFFM0Msa0ZBQW9FO0FBQ3BFLDJFQUFtRDtBQUNuRCwyRUFBaUQ7QUFFakQsTUFBTSxFQUFFLEdBQUc7SUFDUCwyQ0FBMkM7SUFDM0MsMENBQTBDLEVBQUUsbUNBQU0sQ0FBQyxVQUFVLENBQUMsK0JBQStCLENBQUM7SUFDOUYsd0JBQXdCLEVBQUUsbUNBQU0sQ0FBQyxJQUFJLENBQUMsd0JBQXdCLENBQUM7SUFDL0QsYUFBYSxFQUFFLG1DQUFNLENBQUMsSUFBSSxDQUFDLE1BQU07SUFDakMsb0JBQW9CLEVBQUUsaUNBQUksQ0FBQyxJQUFJLENBQUMsb0JBQW9CLENBQUM7SUFDckQsY0FBYyxFQUFFLGlDQUFJLENBQUMsSUFBSSxDQUFDLE9BQU87SUFDakMsb0JBQW9CLEVBQUUsaUNBQUksQ0FBQyxVQUFVLENBQUMsT0FBTztJQUM3QyxtQkFBbUIsRUFBRSxzQkFBQztDQUN6QixDQUFBO0FBR00sTUFBTSxVQUFVLEdBQUcsQ0FDdEIsQ0FBa0IsRUFDbEIsRUFFQyxFQUNILEVBQUUsQ0FBQyxrQ0FBa0MsQ0FBQyxTQUFTLENBQzdDLGtDQUFrQyxDQUFDLFNBQVMsQ0FBQyxXQUFXLENBQUMsVUFBVSxDQUFDLENBQUMsQ0FBQyxDQUFDLEVBQ3ZFO0lBQ0ksYUFBYSxFQUFFLEVBQUUsQ0FBQyxXQUFXO0NBQ2hDLENBQ0osQ0FBQTtBQVZZLFFBQUEsVUFBVSxjQVV0QiJ9
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import * as pt from 'exupery-core-types';
|
|
2
|
+
import * as s_in from "../../generated/interface/schemas/interface/resolved";
|
|
3
|
+
import * as s_out from "pareto-fountain-pen/dist/generated/interface/schemas/block/unconstrained";
|
|
4
|
+
import * as s_ts from "../../generated/interface/schemas/typescript_light/unconstrained";
|
|
5
|
+
export declare function line_dictionary($: pt.Dictionary<s_out.Line_Part>, if_empty: s_out.Line_Part, prefix: s_out.Line_Part, suffix: s_out.Line_Part, add_commas: boolean): s_out.Line_Part;
|
|
6
|
+
export declare const Module_Set: ($: s_in.Module_Set) => s_out.Directory;
|
|
7
|
+
export declare const Type_to_Aliases: ($: s_in.Type, $p: {
|
|
8
|
+
"key": string;
|
|
9
|
+
"type parameters": s_in.Type_Parameters;
|
|
10
|
+
"global type parameters": s_in.Type_Parameters;
|
|
11
|
+
"temp imports": s_in.Module["imports"];
|
|
12
|
+
}) => s_out.Block_Part;
|
|
13
|
+
export declare const Identifier: ($: pt.Array<string>) => string;
|
|
14
|
+
export declare const Type_to_Type: ($: s_in.Type, $p: {
|
|
15
|
+
"global type parameters": pt.Optional_Value<pt.Dictionary<null>>;
|
|
16
|
+
"temp imports": pt.Optional_Value<s_in.Module["imports"]>;
|
|
17
|
+
}) => s_ts.Type;
|
|
18
|
+
export declare const Type_Declaration: ($: null, $p: {
|
|
19
|
+
"name": string;
|
|
20
|
+
"type parameters": s_in.Type_Parameters;
|
|
21
|
+
"global type parameters": s_in.Type_Parameters;
|
|
22
|
+
"callback": () => s_out.Line_Part;
|
|
23
|
+
}) => s_out.Block_Part;
|