@ball-lang/cli 1.24.0 → 1.26.0
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/README.md +30 -2
- package/dist/cli_core.d.ts +90 -0
- package/dist/cli_core.d.ts.map +1 -0
- package/dist/cli_core.js +121 -0
- package/dist/cli_core.js.map +1 -0
- package/dist/compiled_cli.d.ts +276 -0
- package/dist/compiled_cli.d.ts.map +1 -0
- package/dist/compiled_cli.js +1938 -0
- package/dist/compiled_cli.js.map +1 -0
- package/dist/index.js +71 -3
- package/dist/index.js.map +1 -1
- package/package.json +3 -3
- package/src/cli_core.ts +171 -0
- package/src/compiled_cli.ts +1736 -0
- package/src/index.ts +97 -3
package/README.md
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
# @ball-lang/cli
|
|
4
4
|
|
|
5
|
-
Command-line interface for the [Ball programming language](https://github.com/ball-lang/ball). Runs Ball programs
|
|
5
|
+
Command-line interface for the [Ball programming language](https://github.com/ball-lang/ball). Runs Ball programs (`run`, powered by [`@ball-lang/engine`](https://www.npmjs.com/package/@ball-lang/engine)), inspects and validates them (`info`/`validate`/`tree`, powered by the self-hosted `cli_core.dart` verbs compiled through `@ball-lang/compiler`), and performs static capability analysis (`audit`).
|
|
6
6
|
|
|
7
7
|
> Note: `@ball-lang/cli` depends on a published `@ball-lang/engine`. Keep its dependency range in `package.json` aligned with the current engine major (the engine is at 1.x) so npm can resolve a compatible engine — a stale `^0.3.0` range will not accept engine 1.x.
|
|
8
8
|
|
|
@@ -28,6 +28,34 @@ Execute a Ball program. Writes `std.print` output to stdout.
|
|
|
28
28
|
ball run examples/hello_world/hello_world.ball.json
|
|
29
29
|
```
|
|
30
30
|
|
|
31
|
+
### `ball info <program.ball.json>`
|
|
32
|
+
|
|
33
|
+
Inspect a Ball program's structure — name, version, entry point, and a per-module breakdown (functions, type definitions, aliases, enums). Computed by the same self-hosted `cli_core.dart` verb the Dart CLI uses, compiled to TypeScript, so the output is byte-identical between the two CLIs.
|
|
34
|
+
|
|
35
|
+
```bash
|
|
36
|
+
ball info examples/hello_world/hello_world.ball.json
|
|
37
|
+
```
|
|
38
|
+
|
|
39
|
+
### `ball validate <program.ball.json>`
|
|
40
|
+
|
|
41
|
+
Check a Ball program's validity (entry point resolves, no duplicate module names, every non-base function has a body or metadata). Prints `Valid: ...` on stdout and exits 0, or `Invalid: N error(s) found` on stderr and exits 1.
|
|
42
|
+
|
|
43
|
+
```bash
|
|
44
|
+
ball validate examples/hello_world/hello_world.ball.json
|
|
45
|
+
```
|
|
46
|
+
|
|
47
|
+
### `ball tree <program.ball.json>`
|
|
48
|
+
|
|
49
|
+
Print the module/import tree — every module with its function count, and every `moduleImports` entry with its resolved source (`http:`, `file:`, `git:`, a registry spec, `inline`, or `ref only`).
|
|
50
|
+
|
|
51
|
+
```bash
|
|
52
|
+
ball tree examples/hello_world/hello_world.ball.json
|
|
53
|
+
```
|
|
54
|
+
|
|
55
|
+
### `ball version`
|
|
56
|
+
|
|
57
|
+
Prints `ball <version>` (same as `--version`/`-v`, see below).
|
|
58
|
+
|
|
31
59
|
### `ball audit <program.ball.json>`
|
|
32
60
|
|
|
33
61
|
Static capability analysis. Walks the expression tree of every user-defined function and reports which side-effect categories are used. Because every side effect in Ball flows through a named base function, this analysis is provably complete -- not heuristic.
|
|
@@ -64,7 +92,7 @@ Capability categories: `pure`, `io`, `fs`, `process`, `time`, `random`, `memory`
|
|
|
64
92
|
|
|
65
93
|
### `ball --version`
|
|
66
94
|
|
|
67
|
-
Prints the CLI version.
|
|
95
|
+
Prints `ball <version>` (matches the Dart CLI's `--version`/`-v`/`version` — all three spellings dispatch to the same `cli_core.versionLine`).
|
|
68
96
|
|
|
69
97
|
### `ball --help`
|
|
70
98
|
|
|
@@ -0,0 +1,90 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* TypeScript wrapper around the compiled cli-core verbs — `info`, `validate`,
|
|
3
|
+
* `tree`, `version` (issue #364).
|
|
4
|
+
*
|
|
5
|
+
* `compiled_cli.ts` is auto-generated (see its own file header for the regen
|
|
6
|
+
* recipe) by compiling `dart/self_host/cli.ball.json` through
|
|
7
|
+
* `@ball-lang/compiler` — the same pipeline `ts/engine/src/compiled_engine.ts`
|
|
8
|
+
* uses for the self-hosted engine. Its `infoReport` / `validateReport` /
|
|
9
|
+
* `validateOk` / `treeReport` / `versionLine` functions are a straight
|
|
10
|
+
* compile of `dart/shared/lib/cli_core.dart`'s pure `Program -> String`
|
|
11
|
+
* verbs, so this wrapper's only job is bridging representations:
|
|
12
|
+
*
|
|
13
|
+
* - The compiled functions access proto3-JSON fields via **direct property
|
|
14
|
+
* access with no optional chaining** (e.g. `program.modules.length`,
|
|
15
|
+
* `imp.http.url`) — the same assumption the Dart *tree-walking engine*
|
|
16
|
+
* makes about its input (see the self-host parity gate at
|
|
17
|
+
* `dart/cli/test/cli_core_parity_test.dart`, whose `protoToEngineMap`
|
|
18
|
+
* helper performs the equivalent normalization on the Dart side).
|
|
19
|
+
* - Real `.ball.json` files are proto3 JSON, which **omits** default/empty
|
|
20
|
+
* fields (`modules: []`, an unset `entryModule: ""`, an absent
|
|
21
|
+
* `moduleImports`). Fed directly to the compiled functions, a missing
|
|
22
|
+
* repeated field throws ("Cannot read properties of undefined").
|
|
23
|
+
* - `normalizeProgram` below fully materializes every field the four verbs
|
|
24
|
+
* touch (Program / Module / FunctionDefinition / ModuleImport + its five
|
|
25
|
+
* `source` variants) with its proto3 default — mirroring
|
|
26
|
+
* `protoToEngineMap`'s job for the TS side. It's intentionally scoped to
|
|
27
|
+
* exactly cli_core's field surface (not a generic protobuf normalizer),
|
|
28
|
+
* kept in this small wrapper (not `engine_setup.ts`'s much larger,
|
|
29
|
+
* generic `protoWrap`) because `@ball-lang/cli` has no dependency path to
|
|
30
|
+
* `@ball-lang/engine`'s internal `engine_setup.ts` (it isn't part of that
|
|
31
|
+
* package's public `exports` map) — see `dart/cli/AGENTS.md` /
|
|
32
|
+
* `ts/cli/AGENTS.md` for the parity gate this feeds.
|
|
33
|
+
*
|
|
34
|
+
* Regenerate `compiled_cli.ts` whenever `dart/shared/lib/cli_core.dart`
|
|
35
|
+
* changes — see CLAUDE.md's "Regenerate compiled TS CLI core" recipe.
|
|
36
|
+
*/
|
|
37
|
+
export interface Program {
|
|
38
|
+
name?: string;
|
|
39
|
+
version?: string;
|
|
40
|
+
entryModule?: string;
|
|
41
|
+
entryFunction?: string;
|
|
42
|
+
modules?: ProgramModule[];
|
|
43
|
+
}
|
|
44
|
+
export interface ProgramModule {
|
|
45
|
+
name?: string;
|
|
46
|
+
description?: string;
|
|
47
|
+
functions?: ProgramFunction[];
|
|
48
|
+
typeDefs?: unknown[];
|
|
49
|
+
typeAliases?: unknown[];
|
|
50
|
+
enums?: unknown[];
|
|
51
|
+
moduleImports?: ModuleImport[];
|
|
52
|
+
}
|
|
53
|
+
export interface ProgramFunction {
|
|
54
|
+
name?: string;
|
|
55
|
+
isBase?: boolean;
|
|
56
|
+
body?: unknown;
|
|
57
|
+
metadata?: unknown;
|
|
58
|
+
}
|
|
59
|
+
export interface ModuleImport {
|
|
60
|
+
name?: string;
|
|
61
|
+
http?: {
|
|
62
|
+
url?: string;
|
|
63
|
+
};
|
|
64
|
+
file?: {
|
|
65
|
+
path?: string;
|
|
66
|
+
};
|
|
67
|
+
git?: {
|
|
68
|
+
url?: string;
|
|
69
|
+
ref?: string;
|
|
70
|
+
};
|
|
71
|
+
registry?: {
|
|
72
|
+
package?: string;
|
|
73
|
+
version?: string;
|
|
74
|
+
registry?: string;
|
|
75
|
+
};
|
|
76
|
+
inline?: unknown;
|
|
77
|
+
}
|
|
78
|
+
/**
|
|
79
|
+
* Fully materialize a proto3-JSON `Program` (with omitted defaults) into the
|
|
80
|
+
* shape `compiled_cli.ts`'s verbs expect (every touched field present).
|
|
81
|
+
* Exported so the parity test can normalize once and feed the identical
|
|
82
|
+
* value to the compiled verb under test.
|
|
83
|
+
*/
|
|
84
|
+
export declare function normalizeProgram(raw: Program): unknown;
|
|
85
|
+
export declare function infoReport(program: Program): string;
|
|
86
|
+
export declare function validateReport(program: Program): string;
|
|
87
|
+
export declare function validateOk(program: Program): boolean;
|
|
88
|
+
export declare function treeReport(program: Program): string;
|
|
89
|
+
export declare function versionLine(version: string): string;
|
|
90
|
+
//# sourceMappingURL=cli_core.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"cli_core.d.ts","sourceRoot":"","sources":["../src/cli_core.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAmCG;AAeH,MAAM,WAAW,OAAO;IACtB,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,aAAa,CAAC,EAAE,MAAM,CAAC;IACvB,OAAO,CAAC,EAAE,aAAa,EAAE,CAAC;CAC3B;AAED,MAAM,WAAW,aAAa;IAC5B,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,SAAS,CAAC,EAAE,eAAe,EAAE,CAAC;IAC9B,QAAQ,CAAC,EAAE,OAAO,EAAE,CAAC;IACrB,WAAW,CAAC,EAAE,OAAO,EAAE,CAAC;IACxB,KAAK,CAAC,EAAE,OAAO,EAAE,CAAC;IAClB,aAAa,CAAC,EAAE,YAAY,EAAE,CAAC;CAChC;AAED,MAAM,WAAW,eAAe;IAC9B,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,MAAM,CAAC,EAAE,OAAO,CAAC;IACjB,IAAI,CAAC,EAAE,OAAO,CAAC;IACf,QAAQ,CAAC,EAAE,OAAO,CAAC;CACpB;AAED,MAAM,WAAW,YAAY;IAC3B,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,IAAI,CAAC,EAAE;QAAE,GAAG,CAAC,EAAE,MAAM,CAAA;KAAE,CAAC;IACxB,IAAI,CAAC,EAAE;QAAE,IAAI,CAAC,EAAE,MAAM,CAAA;KAAE,CAAC;IACzB,GAAG,CAAC,EAAE;QAAE,GAAG,CAAC,EAAE,MAAM,CAAC;QAAC,GAAG,CAAC,EAAE,MAAM,CAAA;KAAE,CAAC;IACrC,QAAQ,CAAC,EAAE;QAAE,OAAO,CAAC,EAAE,MAAM,CAAC;QAAC,OAAO,CAAC,EAAE,MAAM,CAAC;QAAC,QAAQ,CAAC,EAAE,MAAM,CAAA;KAAE,CAAC;IACrE,MAAM,CAAC,EAAE,OAAO,CAAC;CAClB;AAgDD;;;;;GAKG;AACH,wBAAgB,gBAAgB,CAAC,GAAG,EAAE,OAAO,GAAG,OAAO,CAQtD;AAQD,wBAAgB,UAAU,CAAC,OAAO,EAAE,OAAO,GAAG,MAAM,CAEnD;AAED,wBAAgB,cAAc,CAAC,OAAO,EAAE,OAAO,GAAG,MAAM,CAEvD;AAED,wBAAgB,UAAU,CAAC,OAAO,EAAE,OAAO,GAAG,OAAO,CAEpD;AAED,wBAAgB,UAAU,CAAC,OAAO,EAAE,OAAO,GAAG,MAAM,CAEnD;AAED,wBAAgB,WAAW,CAAC,OAAO,EAAE,MAAM,GAAG,MAAM,CAEnD"}
|
package/dist/cli_core.js
ADDED
|
@@ -0,0 +1,121 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* TypeScript wrapper around the compiled cli-core verbs — `info`, `validate`,
|
|
3
|
+
* `tree`, `version` (issue #364).
|
|
4
|
+
*
|
|
5
|
+
* `compiled_cli.ts` is auto-generated (see its own file header for the regen
|
|
6
|
+
* recipe) by compiling `dart/self_host/cli.ball.json` through
|
|
7
|
+
* `@ball-lang/compiler` — the same pipeline `ts/engine/src/compiled_engine.ts`
|
|
8
|
+
* uses for the self-hosted engine. Its `infoReport` / `validateReport` /
|
|
9
|
+
* `validateOk` / `treeReport` / `versionLine` functions are a straight
|
|
10
|
+
* compile of `dart/shared/lib/cli_core.dart`'s pure `Program -> String`
|
|
11
|
+
* verbs, so this wrapper's only job is bridging representations:
|
|
12
|
+
*
|
|
13
|
+
* - The compiled functions access proto3-JSON fields via **direct property
|
|
14
|
+
* access with no optional chaining** (e.g. `program.modules.length`,
|
|
15
|
+
* `imp.http.url`) — the same assumption the Dart *tree-walking engine*
|
|
16
|
+
* makes about its input (see the self-host parity gate at
|
|
17
|
+
* `dart/cli/test/cli_core_parity_test.dart`, whose `protoToEngineMap`
|
|
18
|
+
* helper performs the equivalent normalization on the Dart side).
|
|
19
|
+
* - Real `.ball.json` files are proto3 JSON, which **omits** default/empty
|
|
20
|
+
* fields (`modules: []`, an unset `entryModule: ""`, an absent
|
|
21
|
+
* `moduleImports`). Fed directly to the compiled functions, a missing
|
|
22
|
+
* repeated field throws ("Cannot read properties of undefined").
|
|
23
|
+
* - `normalizeProgram` below fully materializes every field the four verbs
|
|
24
|
+
* touch (Program / Module / FunctionDefinition / ModuleImport + its five
|
|
25
|
+
* `source` variants) with its proto3 default — mirroring
|
|
26
|
+
* `protoToEngineMap`'s job for the TS side. It's intentionally scoped to
|
|
27
|
+
* exactly cli_core's field surface (not a generic protobuf normalizer),
|
|
28
|
+
* kept in this small wrapper (not `engine_setup.ts`'s much larger,
|
|
29
|
+
* generic `protoWrap`) because `@ball-lang/cli` has no dependency path to
|
|
30
|
+
* `@ball-lang/engine`'s internal `engine_setup.ts` (it isn't part of that
|
|
31
|
+
* package's public `exports` map) — see `dart/cli/AGENTS.md` /
|
|
32
|
+
* `ts/cli/AGENTS.md` for the parity gate this feeds.
|
|
33
|
+
*
|
|
34
|
+
* Regenerate `compiled_cli.ts` whenever `dart/shared/lib/cli_core.dart`
|
|
35
|
+
* changes — see CLAUDE.md's "Regenerate compiled TS CLI core" recipe.
|
|
36
|
+
*/
|
|
37
|
+
import { infoReport as _infoReport, validateReport as _validateReport, validateOk as _validateOk, treeReport as _treeReport, versionLine as _versionLine, } from "./compiled_cli.js";
|
|
38
|
+
// ── normalization ────────────────────────────────────────────────────────────
|
|
39
|
+
function normalizeFunction(raw) {
|
|
40
|
+
const out = { name: raw.name ?? '', isBase: raw.isBase ?? false };
|
|
41
|
+
// hasBody()/hasMetadata() (compiled as free functions routed through the
|
|
42
|
+
// ball_proto base module) treat undefined/null as "absent" — so these two
|
|
43
|
+
// are only copied across when actually set, never defaulted to a sentinel.
|
|
44
|
+
if (raw.body !== undefined)
|
|
45
|
+
out.body = raw.body;
|
|
46
|
+
if (raw.metadata !== undefined)
|
|
47
|
+
out.metadata = raw.metadata;
|
|
48
|
+
return out;
|
|
49
|
+
}
|
|
50
|
+
function normalizeModuleImport(raw) {
|
|
51
|
+
const out = { name: raw.name ?? '' };
|
|
52
|
+
if (raw.http)
|
|
53
|
+
out.http = { url: raw.http.url ?? '' };
|
|
54
|
+
if (raw.file)
|
|
55
|
+
out.file = { path: raw.file.path ?? '' };
|
|
56
|
+
if (raw.git)
|
|
57
|
+
out.git = { url: raw.git.url ?? '', ref: raw.git.ref ?? '' };
|
|
58
|
+
if (raw.registry) {
|
|
59
|
+
// RegistrySource.registry is a `Registry` enum; Dart's generated
|
|
60
|
+
// accessor exposes it as `imp.registry.registry.name` (the enum's own
|
|
61
|
+
// string name). Proto3 JSON already encodes an enum field AS its name
|
|
62
|
+
// string, so wrap it in a `{name}` object here to match what
|
|
63
|
+
// cli_core.dart's `_importSource` — compiled 1:1 into `compiled_cli.ts`
|
|
64
|
+
// — expects at that property-access site.
|
|
65
|
+
out.registry = {
|
|
66
|
+
package: raw.registry.package ?? '',
|
|
67
|
+
version: raw.registry.version ?? '',
|
|
68
|
+
registry: { name: raw.registry.registry ?? 'REGISTRY_UNSPECIFIED' },
|
|
69
|
+
};
|
|
70
|
+
}
|
|
71
|
+
if (raw.inline)
|
|
72
|
+
out.inline = {};
|
|
73
|
+
return out;
|
|
74
|
+
}
|
|
75
|
+
function normalizeModule(raw) {
|
|
76
|
+
return {
|
|
77
|
+
name: raw.name ?? '',
|
|
78
|
+
description: raw.description ?? '',
|
|
79
|
+
functions: (raw.functions ?? []).map(normalizeFunction),
|
|
80
|
+
typeDefs: raw.typeDefs ?? [],
|
|
81
|
+
typeAliases: raw.typeAliases ?? [],
|
|
82
|
+
enums: raw.enums ?? [],
|
|
83
|
+
moduleImports: (raw.moduleImports ?? []).map(normalizeModuleImport),
|
|
84
|
+
};
|
|
85
|
+
}
|
|
86
|
+
/**
|
|
87
|
+
* Fully materialize a proto3-JSON `Program` (with omitted defaults) into the
|
|
88
|
+
* shape `compiled_cli.ts`'s verbs expect (every touched field present).
|
|
89
|
+
* Exported so the parity test can normalize once and feed the identical
|
|
90
|
+
* value to the compiled verb under test.
|
|
91
|
+
*/
|
|
92
|
+
export function normalizeProgram(raw) {
|
|
93
|
+
return {
|
|
94
|
+
name: raw.name ?? '',
|
|
95
|
+
version: raw.version ?? '',
|
|
96
|
+
entryModule: raw.entryModule ?? '',
|
|
97
|
+
entryFunction: raw.entryFunction ?? '',
|
|
98
|
+
modules: (raw.modules ?? []).map(normalizeModule),
|
|
99
|
+
};
|
|
100
|
+
}
|
|
101
|
+
// ── public verbs ─────────────────────────────────────────────────────────────
|
|
102
|
+
// Mirror `dart/shared/lib/cli_core.dart`'s public API 1:1 (same names, same
|
|
103
|
+
// String/bool results) — operating on the compiled Ball IR instead of native
|
|
104
|
+
// Dart, so the two implementations are provably the same computation over the
|
|
105
|
+
// same input (see `test/cli_core_parity_test.ts`).
|
|
106
|
+
export function infoReport(program) {
|
|
107
|
+
return _infoReport(normalizeProgram(program));
|
|
108
|
+
}
|
|
109
|
+
export function validateReport(program) {
|
|
110
|
+
return _validateReport(normalizeProgram(program));
|
|
111
|
+
}
|
|
112
|
+
export function validateOk(program) {
|
|
113
|
+
return _validateOk(normalizeProgram(program));
|
|
114
|
+
}
|
|
115
|
+
export function treeReport(program) {
|
|
116
|
+
return _treeReport(normalizeProgram(program));
|
|
117
|
+
}
|
|
118
|
+
export function versionLine(version) {
|
|
119
|
+
return _versionLine(version);
|
|
120
|
+
}
|
|
121
|
+
//# sourceMappingURL=cli_core.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"cli_core.js","sourceRoot":"","sources":["../src/cli_core.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAmCG;AAEH,OAAO,EACL,UAAU,IAAI,WAAW,EACzB,cAAc,IAAI,eAAe,EACjC,UAAU,IAAI,WAAW,EACzB,UAAU,IAAI,WAAW,EACzB,WAAW,IAAI,YAAY,GAC5B,MAAM,mBAAmB,CAAC;AAyC3B,gFAAgF;AAEhF,SAAS,iBAAiB,CAAC,GAAoB;IAC7C,MAAM,GAAG,GAA4B,EAAE,IAAI,EAAE,GAAG,CAAC,IAAI,IAAI,EAAE,EAAE,MAAM,EAAE,GAAG,CAAC,MAAM,IAAI,KAAK,EAAE,CAAC;IAC3F,yEAAyE;IACzE,0EAA0E;IAC1E,2EAA2E;IAC3E,IAAI,GAAG,CAAC,IAAI,KAAK,SAAS;QAAE,GAAG,CAAC,IAAI,GAAG,GAAG,CAAC,IAAI,CAAC;IAChD,IAAI,GAAG,CAAC,QAAQ,KAAK,SAAS;QAAE,GAAG,CAAC,QAAQ,GAAG,GAAG,CAAC,QAAQ,CAAC;IAC5D,OAAO,GAAG,CAAC;AACb,CAAC;AAED,SAAS,qBAAqB,CAAC,GAAiB;IAC9C,MAAM,GAAG,GAA4B,EAAE,IAAI,EAAE,GAAG,CAAC,IAAI,IAAI,EAAE,EAAE,CAAC;IAC9D,IAAI,GAAG,CAAC,IAAI;QAAE,GAAG,CAAC,IAAI,GAAG,EAAE,GAAG,EAAE,GAAG,CAAC,IAAI,CAAC,GAAG,IAAI,EAAE,EAAE,CAAC;IACrD,IAAI,GAAG,CAAC,IAAI;QAAE,GAAG,CAAC,IAAI,GAAG,EAAE,IAAI,EAAE,GAAG,CAAC,IAAI,CAAC,IAAI,IAAI,EAAE,EAAE,CAAC;IACvD,IAAI,GAAG,CAAC,GAAG;QAAE,GAAG,CAAC,GAAG,GAAG,EAAE,GAAG,EAAE,GAAG,CAAC,GAAG,CAAC,GAAG,IAAI,EAAE,EAAE,GAAG,EAAE,GAAG,CAAC,GAAG,CAAC,GAAG,IAAI,EAAE,EAAE,CAAC;IAC1E,IAAI,GAAG,CAAC,QAAQ,EAAE,CAAC;QACjB,iEAAiE;QACjE,sEAAsE;QACtE,sEAAsE;QACtE,6DAA6D;QAC7D,wEAAwE;QACxE,0CAA0C;QAC1C,GAAG,CAAC,QAAQ,GAAG;YACb,OAAO,EAAE,GAAG,CAAC,QAAQ,CAAC,OAAO,IAAI,EAAE;YACnC,OAAO,EAAE,GAAG,CAAC,QAAQ,CAAC,OAAO,IAAI,EAAE;YACnC,QAAQ,EAAE,EAAE,IAAI,EAAE,GAAG,CAAC,QAAQ,CAAC,QAAQ,IAAI,sBAAsB,EAAE;SACpE,CAAC;IACJ,CAAC;IACD,IAAI,GAAG,CAAC,MAAM;QAAE,GAAG,CAAC,MAAM,GAAG,EAAE,CAAC;IAChC,OAAO,GAAG,CAAC;AACb,CAAC;AAED,SAAS,eAAe,CAAC,GAAkB;IACzC,OAAO;QACL,IAAI,EAAE,GAAG,CAAC,IAAI,IAAI,EAAE;QACpB,WAAW,EAAE,GAAG,CAAC,WAAW,IAAI,EAAE;QAClC,SAAS,EAAE,CAAC,GAAG,CAAC,SAAS,IAAI,EAAE,CAAC,CAAC,GAAG,CAAC,iBAAiB,CAAC;QACvD,QAAQ,EAAE,GAAG,CAAC,QAAQ,IAAI,EAAE;QAC5B,WAAW,EAAE,GAAG,CAAC,WAAW,IAAI,EAAE;QAClC,KAAK,EAAE,GAAG,CAAC,KAAK,IAAI,EAAE;QACtB,aAAa,EAAE,CAAC,GAAG,CAAC,aAAa,IAAI,EAAE,CAAC,CAAC,GAAG,CAAC,qBAAqB,CAAC;KACpE,CAAC;AACJ,CAAC;AAED;;;;;GAKG;AACH,MAAM,UAAU,gBAAgB,CAAC,GAAY;IAC3C,OAAO;QACL,IAAI,EAAE,GAAG,CAAC,IAAI,IAAI,EAAE;QACpB,OAAO,EAAE,GAAG,CAAC,OAAO,IAAI,EAAE;QAC1B,WAAW,EAAE,GAAG,CAAC,WAAW,IAAI,EAAE;QAClC,aAAa,EAAE,GAAG,CAAC,aAAa,IAAI,EAAE;QACtC,OAAO,EAAE,CAAC,GAAG,CAAC,OAAO,IAAI,EAAE,CAAC,CAAC,GAAG,CAAC,eAAe,CAAC;KAClD,CAAC;AACJ,CAAC;AAED,gFAAgF;AAChF,4EAA4E;AAC5E,6EAA6E;AAC7E,8EAA8E;AAC9E,mDAAmD;AAEnD,MAAM,UAAU,UAAU,CAAC,OAAgB;IACzC,OAAO,WAAW,CAAC,gBAAgB,CAAC,OAAO,CAAC,CAAW,CAAC;AAC1D,CAAC;AAED,MAAM,UAAU,cAAc,CAAC,OAAgB;IAC7C,OAAO,eAAe,CAAC,gBAAgB,CAAC,OAAO,CAAC,CAAW,CAAC;AAC9D,CAAC;AAED,MAAM,UAAU,UAAU,CAAC,OAAgB;IACzC,OAAO,WAAW,CAAC,gBAAgB,CAAC,OAAO,CAAC,CAAY,CAAC;AAC3D,CAAC;AAED,MAAM,UAAU,UAAU,CAAC,OAAgB;IACzC,OAAO,WAAW,CAAC,gBAAgB,CAAC,OAAO,CAAC,CAAW,CAAC;AAC1D,CAAC;AAED,MAAM,UAAU,WAAW,CAAC,OAAe;IACzC,OAAO,YAAY,CAAC,OAAO,CAAW,CAAC;AACzC,CAAC"}
|
|
@@ -0,0 +1,276 @@
|
|
|
1
|
+
export declare class BallValue {
|
|
2
|
+
}
|
|
3
|
+
export declare function ball_cast_assert(ok: boolean, t: string): boolean;
|
|
4
|
+
export declare class BallMap extends BallValue {
|
|
5
|
+
constructor(entries?: any);
|
|
6
|
+
}
|
|
7
|
+
export declare class BallList extends Array {
|
|
8
|
+
constructor(items?: any);
|
|
9
|
+
}
|
|
10
|
+
export declare class BallObject extends BallMap {
|
|
11
|
+
constructor(arg0?: any, superObject?: any, fields?: any, methods?: any);
|
|
12
|
+
setField(name: any, value: any): void;
|
|
13
|
+
}
|
|
14
|
+
export declare class BallDouble {
|
|
15
|
+
readonly value: number;
|
|
16
|
+
constructor(v: number);
|
|
17
|
+
valueOf(): number;
|
|
18
|
+
get isNaN(): boolean;
|
|
19
|
+
get isFinite(): boolean;
|
|
20
|
+
get isInfinite(): boolean;
|
|
21
|
+
get isNegative(): boolean;
|
|
22
|
+
remainder(other: any): number;
|
|
23
|
+
toString(): string;
|
|
24
|
+
[Symbol.toPrimitive](hint: string): any;
|
|
25
|
+
}
|
|
26
|
+
export declare function __ball_mul(a: any, b: any): any;
|
|
27
|
+
export declare function __ball_add(a: any, b: any): any;
|
|
28
|
+
export declare function __ball_sub(a: any, b: any): any;
|
|
29
|
+
export declare function __ball_eq(a: any, b: any): boolean;
|
|
30
|
+
export declare function __ball_lt(a: any, b: any): any;
|
|
31
|
+
export declare function __ball_gt(a: any, b: any): any;
|
|
32
|
+
export declare function __ball_le(a: any, b: any): any;
|
|
33
|
+
export declare function __ball_ge(a: any, b: any): any;
|
|
34
|
+
export declare function __ball_to_string(v: any): string;
|
|
35
|
+
export declare function __ball_parse_int(s: string): number;
|
|
36
|
+
export declare function __ball_to_int(v: any): any;
|
|
37
|
+
export declare function __ball_parse_double(s: string): BallDouble;
|
|
38
|
+
export declare function __ball_double_to_string(n: number): string;
|
|
39
|
+
export declare function __ball_to_fixed(v: any, digits: any): string;
|
|
40
|
+
export declare function __ball_concat(a: any, b: any): any;
|
|
41
|
+
export declare function __ball_push_all(target: any, items: any): void;
|
|
42
|
+
export declare const __I64_MAX = 9223372036854775807n;
|
|
43
|
+
export declare const __I64_MIN = -9223372036854775808n;
|
|
44
|
+
export declare function __i64_wrap(v: bigint): any;
|
|
45
|
+
export declare function __to_bigint(v: any): bigint;
|
|
46
|
+
export declare function __fits32(v: any): boolean;
|
|
47
|
+
export declare function __ball_bitand(a: any, b: any): any;
|
|
48
|
+
export declare function __ball_bitor(a: any, b: any): any;
|
|
49
|
+
export declare function __ball_bitxor(a: any, b: any): any;
|
|
50
|
+
export declare function __ball_bitnot(a: any): any;
|
|
51
|
+
export declare function __ball_shl(a: any, b: any): any;
|
|
52
|
+
export declare function __ball_shr(a: any, b: any): any;
|
|
53
|
+
export declare function __ball_ushr(a: any, b: any): any;
|
|
54
|
+
export declare function __ball_negate(a: any): any;
|
|
55
|
+
export declare function __ball_divide(a: any, b: any): any;
|
|
56
|
+
export declare function __ball_math_abs(a: any): any;
|
|
57
|
+
export declare function __ball_math_gcd(a: any, b: any): any;
|
|
58
|
+
export declare function __ball_math_lcm(a: any, b: any): any;
|
|
59
|
+
export declare function __dart_mod(a: any, b: any): any;
|
|
60
|
+
export declare let __ball_active_error: any;
|
|
61
|
+
export declare function __ball_index(target: any, idx: any): any;
|
|
62
|
+
export declare const int: {
|
|
63
|
+
parse: (s: any) => number;
|
|
64
|
+
tryParse: (s: any) => number | null;
|
|
65
|
+
};
|
|
66
|
+
export declare const double: {
|
|
67
|
+
parse: (s: any) => number;
|
|
68
|
+
tryParse: (s: any) => number | null;
|
|
69
|
+
infinity: number;
|
|
70
|
+
nan: number;
|
|
71
|
+
negativeInfinity: number;
|
|
72
|
+
};
|
|
73
|
+
export declare const num: {
|
|
74
|
+
parse: (s: any) => number;
|
|
75
|
+
tryParse: (s: any) => number | null;
|
|
76
|
+
};
|
|
77
|
+
export declare const bool: {
|
|
78
|
+
parse: (s: any) => boolean;
|
|
79
|
+
tryParse: (s: any) => boolean | null;
|
|
80
|
+
};
|
|
81
|
+
export declare const __no_init__: unique symbol;
|
|
82
|
+
export declare function __ball_spread_iter(v: any): any;
|
|
83
|
+
export declare const List: {
|
|
84
|
+
filled: (count: any, value: any) => any[];
|
|
85
|
+
generate: (count: any, generator: any) => any[];
|
|
86
|
+
from: (iter: any) => any[];
|
|
87
|
+
of: (iter: any) => any[];
|
|
88
|
+
unmodifiable: (iter: any) => readonly any[];
|
|
89
|
+
empty: (opts?: any) => never[];
|
|
90
|
+
castFrom: (source: any) => any[];
|
|
91
|
+
};
|
|
92
|
+
export declare const _nativeSet: SetConstructor;
|
|
93
|
+
export declare const _origScopeInit: {
|
|
94
|
+
patched: boolean;
|
|
95
|
+
};
|
|
96
|
+
export declare function _patchScopeBindings(scope: any): void;
|
|
97
|
+
export declare function _has(obj: any, field: string): boolean;
|
|
98
|
+
export declare function hasMetadata(obj: any): boolean;
|
|
99
|
+
export declare function hasBody(obj: any): boolean;
|
|
100
|
+
export declare function hasInput(obj: any): boolean;
|
|
101
|
+
export declare function hasDescriptor(obj: any): boolean;
|
|
102
|
+
export declare function hasHttp(obj: any): boolean;
|
|
103
|
+
export declare function hasFile(obj: any): boolean;
|
|
104
|
+
export declare function hasGit(obj: any): boolean;
|
|
105
|
+
export declare function hasRegistry(obj: any): boolean;
|
|
106
|
+
export declare function hasInline(obj: any): boolean;
|
|
107
|
+
export declare function hasStringValue(obj: any): boolean;
|
|
108
|
+
export declare function hasBoolValue(obj: any): boolean;
|
|
109
|
+
export declare function hasNumberValue(obj: any): boolean;
|
|
110
|
+
export declare function hasResult(obj: any): boolean;
|
|
111
|
+
export declare function hasCall(obj: any): boolean;
|
|
112
|
+
export declare function hasListValue(obj: any): boolean;
|
|
113
|
+
export declare function hasNullValue(obj: any): boolean;
|
|
114
|
+
export declare function hasStructValue(obj: any): boolean;
|
|
115
|
+
export declare function hasMatch(obj: any): boolean;
|
|
116
|
+
export declare function hasXxx(obj: any): boolean;
|
|
117
|
+
export declare function whichXxx(obj: any): string;
|
|
118
|
+
export declare function whichExpr(obj: any): string;
|
|
119
|
+
export declare function whichValue(obj: any): string;
|
|
120
|
+
export declare function whichStmt(obj: any): string;
|
|
121
|
+
export declare function whichKind(obj: any): string;
|
|
122
|
+
export declare function whichSource(obj: any): string;
|
|
123
|
+
export declare function identical(a: any, b: any): boolean;
|
|
124
|
+
export declare function __ball_cascade(target: any, ops: any[]): any;
|
|
125
|
+
export declare const _nativeMapEntries: () => MapIterator<[any, any]>;
|
|
126
|
+
export declare const _nativeMapKeys: () => MapIterator<any>;
|
|
127
|
+
export declare const _nativeMapValues: () => MapIterator<any>;
|
|
128
|
+
export declare function __ball_map_keys(m: any): any;
|
|
129
|
+
export declare function __ball_map_values(m: any): any;
|
|
130
|
+
export declare function __ball_map_entries(m: any): any;
|
|
131
|
+
export declare function __ball_require_map(v: any, opName: string): any;
|
|
132
|
+
export declare const structpb_Value_Kind: {
|
|
133
|
+
readonly nullValue: "nullValue";
|
|
134
|
+
readonly numberValue: "numberValue";
|
|
135
|
+
readonly stringValue: "stringValue";
|
|
136
|
+
readonly boolValue: "boolValue";
|
|
137
|
+
readonly structValue: "structValue";
|
|
138
|
+
readonly listValue: "listValue";
|
|
139
|
+
};
|
|
140
|
+
export declare class __BallValueWrapper {
|
|
141
|
+
private _raw;
|
|
142
|
+
constructor(raw: any);
|
|
143
|
+
whichKind(): string;
|
|
144
|
+
get stringValue(): string;
|
|
145
|
+
get boolValue(): boolean;
|
|
146
|
+
get numberValue(): number;
|
|
147
|
+
get nullValue(): null;
|
|
148
|
+
get listValue(): {
|
|
149
|
+
values: __BallValueWrapper[];
|
|
150
|
+
};
|
|
151
|
+
get structValue(): {
|
|
152
|
+
fields: Record<string, __BallValueWrapper>;
|
|
153
|
+
};
|
|
154
|
+
hasNullValue(): boolean;
|
|
155
|
+
hasStringValue(): boolean;
|
|
156
|
+
hasBoolValue(): boolean;
|
|
157
|
+
hasNumberValue(): boolean;
|
|
158
|
+
hasListValue(): boolean;
|
|
159
|
+
hasStructValue(): boolean;
|
|
160
|
+
toString(): string;
|
|
161
|
+
valueOf(): any;
|
|
162
|
+
}
|
|
163
|
+
export declare const Expression_Expr: {
|
|
164
|
+
readonly call: "call";
|
|
165
|
+
readonly literal: "literal";
|
|
166
|
+
readonly reference: "reference";
|
|
167
|
+
readonly fieldAccess: "fieldAccess";
|
|
168
|
+
readonly messageCreation: "messageCreation";
|
|
169
|
+
readonly block: "block";
|
|
170
|
+
readonly lambda: "lambda";
|
|
171
|
+
readonly notSet: "notSet";
|
|
172
|
+
};
|
|
173
|
+
export declare const Literal_Value: {
|
|
174
|
+
readonly intValue: "intValue";
|
|
175
|
+
readonly doubleValue: "doubleValue";
|
|
176
|
+
readonly stringValue: "stringValue";
|
|
177
|
+
readonly boolValue: "boolValue";
|
|
178
|
+
readonly listValue: "listValue";
|
|
179
|
+
readonly bytesValue: "bytesValue";
|
|
180
|
+
readonly notSet: "notSet";
|
|
181
|
+
};
|
|
182
|
+
export declare const Statement_Stmt: {
|
|
183
|
+
readonly let: "let";
|
|
184
|
+
readonly expression: "expression";
|
|
185
|
+
readonly notSet: "notSet";
|
|
186
|
+
};
|
|
187
|
+
export declare const ModuleImport_Source: {
|
|
188
|
+
readonly http: "http";
|
|
189
|
+
readonly file: "file";
|
|
190
|
+
readonly inline: "inline";
|
|
191
|
+
readonly git: "git";
|
|
192
|
+
readonly registry: "registry";
|
|
193
|
+
readonly notSet: "notSet";
|
|
194
|
+
};
|
|
195
|
+
export declare function __ball_with_type_args<T>(obj: T, args: string[]): T;
|
|
196
|
+
export declare function __ball_split_type_args(s: string): string[];
|
|
197
|
+
export declare function __ball_is_type(value: any, typeStr: string): boolean;
|
|
198
|
+
export declare class DateTime {
|
|
199
|
+
readonly _epochMs: number;
|
|
200
|
+
readonly isUtc: boolean;
|
|
201
|
+
constructor(epochMs?: number, isUtc?: boolean);
|
|
202
|
+
static now(): DateTime;
|
|
203
|
+
static fromMillisecondsSinceEpoch(ms: number, isUtc?: any): DateTime;
|
|
204
|
+
static parse(s: string): DateTime;
|
|
205
|
+
get millisecondsSinceEpoch(): number;
|
|
206
|
+
get microsecondsSinceEpoch(): number;
|
|
207
|
+
toUtc(): DateTime;
|
|
208
|
+
toIso8601String(): string;
|
|
209
|
+
get year(): number;
|
|
210
|
+
get month(): number;
|
|
211
|
+
get day(): number;
|
|
212
|
+
get hour(): number;
|
|
213
|
+
get minute(): number;
|
|
214
|
+
get second(): number;
|
|
215
|
+
}
|
|
216
|
+
export declare class Duration {
|
|
217
|
+
readonly _us: number;
|
|
218
|
+
constructor(opts?: any);
|
|
219
|
+
get inMilliseconds(): number;
|
|
220
|
+
get inMicroseconds(): number;
|
|
221
|
+
}
|
|
222
|
+
export declare const Future: {
|
|
223
|
+
delayed(d: any): Promise<void>;
|
|
224
|
+
value(v: any): Promise<any>;
|
|
225
|
+
};
|
|
226
|
+
export declare const Endian: {
|
|
227
|
+
little: boolean;
|
|
228
|
+
big: boolean;
|
|
229
|
+
host: boolean;
|
|
230
|
+
};
|
|
231
|
+
export declare class ByteData {
|
|
232
|
+
_view: DataView;
|
|
233
|
+
_length: number;
|
|
234
|
+
constructor(size: number);
|
|
235
|
+
get lengthInBytes(): number;
|
|
236
|
+
getUint8(i: number): number;
|
|
237
|
+
setUint8(i: number, v: number): void;
|
|
238
|
+
getInt8(i: number): number;
|
|
239
|
+
setInt8(i: number, v: number): void;
|
|
240
|
+
getUint16(i: number, endian?: any): number;
|
|
241
|
+
setUint16(i: number, v: number, endian?: any): void;
|
|
242
|
+
getInt16(i: number, endian?: any): number;
|
|
243
|
+
setInt16(i: number, v: number, endian?: any): void;
|
|
244
|
+
getUint32(i: number, endian?: any): number;
|
|
245
|
+
setUint32(i: number, v: number, endian?: any): void;
|
|
246
|
+
getInt32(i: number, endian?: any): number;
|
|
247
|
+
setInt32(i: number, v: number, endian?: any): void;
|
|
248
|
+
getFloat32(i: number, endian?: any): number;
|
|
249
|
+
setFloat32(i: number, v: number, endian?: any): void;
|
|
250
|
+
getFloat64(i: number, endian?: any): number;
|
|
251
|
+
setFloat64(i: number, v: number, endian?: any): void;
|
|
252
|
+
getUint64(i: number, endian?: any): bigint;
|
|
253
|
+
setUint64(i: number, v: bigint, endian?: any): void;
|
|
254
|
+
getInt64(i: number, endian?: any): bigint;
|
|
255
|
+
setInt64(i: number, v: bigint, endian?: any): void;
|
|
256
|
+
get buffer(): {
|
|
257
|
+
asUint8List: (start?: number, length?: number) => number[];
|
|
258
|
+
};
|
|
259
|
+
}
|
|
260
|
+
export declare const utf8: {
|
|
261
|
+
encode(s: string): number[];
|
|
262
|
+
decode(bytes: any): string;
|
|
263
|
+
};
|
|
264
|
+
export declare function jsonEncode(obj: any): string;
|
|
265
|
+
export declare function jsonDecode(s: string): any;
|
|
266
|
+
export declare function __isUnknownFnError(e: any): boolean;
|
|
267
|
+
export declare function versionLine(version: any): any;
|
|
268
|
+
export declare function infoReport(program: any): any;
|
|
269
|
+
export declare function validationErrors(program: any): any;
|
|
270
|
+
export declare function validateOk(program: any): any;
|
|
271
|
+
export declare function validateReport(program: any): any;
|
|
272
|
+
export declare function treeReport(program: any): any;
|
|
273
|
+
export declare function _importSource(imp: any): any;
|
|
274
|
+
export declare function auditReport(program: any): any;
|
|
275
|
+
export declare function _allBase(functions: any): any;
|
|
276
|
+
//# sourceMappingURL=compiled_cli.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"compiled_cli.d.ts","sourceRoot":"","sources":["../src/compiled_cli.ts"],"names":[],"mappings":"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"}
|