@ball-lang/cli 1.42.0 → 1.44.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/dist/cli_core.d.ts +16 -0
- package/dist/cli_core.d.ts.map +1 -1
- package/dist/cli_core.js +144 -1
- package/dist/cli_core.js.map +1 -1
- package/dist/compiled_cli.d.ts +64 -0
- package/dist/compiled_cli.d.ts.map +1 -1
- package/dist/compiled_cli.js +1574 -7
- package/dist/compiled_cli.js.map +1 -1
- package/dist/index.js +18 -6
- package/dist/index.js.map +1 -1
- package/package.json +2 -2
- package/src/cli_core.ts +159 -3
- package/src/compiled_cli.ts +1571 -7
- package/src/index.ts +25 -12
- package/dist/capability_analyzer.d.ts +0 -123
- package/dist/capability_analyzer.d.ts.map +0 -1
- package/dist/capability_analyzer.js +0 -314
- package/dist/capability_analyzer.js.map +0 -1
- package/dist/capability_table.d.ts +0 -24
- package/dist/capability_table.d.ts.map +0 -1
- package/dist/capability_table.js +0 -337
- package/dist/capability_table.js.map +0 -1
- package/src/capability_analyzer.ts +0 -470
- package/src/capability_table.ts +0 -382
package/dist/capability_table.js
DELETED
|
@@ -1,337 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Static mapping of every Ball base function to its capability category.
|
|
3
|
-
*
|
|
4
|
-
* Since every side effect in Ball flows through a named base function in a
|
|
5
|
-
* known module, this table is provably complete. No function can perform I/O,
|
|
6
|
-
* access the filesystem, or spawn threads without appearing here.
|
|
7
|
-
*
|
|
8
|
-
* Ported from `dart/shared/lib/capability_table.dart`.
|
|
9
|
-
*/
|
|
10
|
-
/** Canonical ordering of capabilities (matches the Dart enum order). */
|
|
11
|
-
export const ALL_CAPABILITIES = [
|
|
12
|
-
'pure',
|
|
13
|
-
'io',
|
|
14
|
-
'fs',
|
|
15
|
-
'process',
|
|
16
|
-
'time',
|
|
17
|
-
'random',
|
|
18
|
-
'memory',
|
|
19
|
-
'concurrency',
|
|
20
|
-
'network',
|
|
21
|
-
'async',
|
|
22
|
-
];
|
|
23
|
-
/** Risk level associated with each capability. */
|
|
24
|
-
export const capabilityRiskLevel = {
|
|
25
|
-
pure: 'none',
|
|
26
|
-
io: 'low',
|
|
27
|
-
fs: 'medium',
|
|
28
|
-
process: 'high',
|
|
29
|
-
time: 'low',
|
|
30
|
-
random: 'low',
|
|
31
|
-
memory: 'high',
|
|
32
|
-
concurrency: 'medium',
|
|
33
|
-
network: 'high',
|
|
34
|
-
async: 'low',
|
|
35
|
-
};
|
|
36
|
-
/**
|
|
37
|
-
* Lookup the capability of a base function call.
|
|
38
|
-
*
|
|
39
|
-
* Returns `undefined` for non-base / user-defined functions (which are pure
|
|
40
|
-
* by construction — they can only call other functions in this table).
|
|
41
|
-
*/
|
|
42
|
-
export function lookupCapability(module, fn) {
|
|
43
|
-
return CAPABILITY_TABLE[`${module}.${fn}`];
|
|
44
|
-
}
|
|
45
|
-
export const CAPABILITY_TABLE = {
|
|
46
|
-
// ── std: print ──
|
|
47
|
-
'std.print': 'io',
|
|
48
|
-
// ── std: arithmetic (pure) ──
|
|
49
|
-
'std.add': 'pure',
|
|
50
|
-
'std.subtract': 'pure',
|
|
51
|
-
'std.multiply': 'pure',
|
|
52
|
-
'std.divide': 'pure',
|
|
53
|
-
'std.divide_double': 'pure',
|
|
54
|
-
'std.modulo': 'pure',
|
|
55
|
-
'std.negate': 'pure',
|
|
56
|
-
// ── std: comparison (pure) ──
|
|
57
|
-
'std.equals': 'pure',
|
|
58
|
-
'std.not_equals': 'pure',
|
|
59
|
-
'std.less_than': 'pure',
|
|
60
|
-
'std.greater_than': 'pure',
|
|
61
|
-
'std.lte': 'pure',
|
|
62
|
-
'std.gte': 'pure',
|
|
63
|
-
// ── std: logical (pure) ──
|
|
64
|
-
'std.and': 'pure',
|
|
65
|
-
'std.or': 'pure',
|
|
66
|
-
'std.not': 'pure',
|
|
67
|
-
// ── std: bitwise (pure) ──
|
|
68
|
-
'std.bitwise_and': 'pure',
|
|
69
|
-
'std.bitwise_or': 'pure',
|
|
70
|
-
'std.bitwise_xor': 'pure',
|
|
71
|
-
'std.bitwise_not': 'pure',
|
|
72
|
-
'std.left_shift': 'pure',
|
|
73
|
-
'std.right_shift': 'pure',
|
|
74
|
-
'std.unsigned_right_shift': 'pure',
|
|
75
|
-
// ── std: increment/decrement (pure) ──
|
|
76
|
-
'std.pre_increment': 'pure',
|
|
77
|
-
'std.pre_decrement': 'pure',
|
|
78
|
-
'std.post_increment': 'pure',
|
|
79
|
-
'std.post_decrement': 'pure',
|
|
80
|
-
// ── std: string & conversion (pure) ──
|
|
81
|
-
'std.concat': 'pure',
|
|
82
|
-
'std.length': 'pure',
|
|
83
|
-
'std.to_string': 'pure',
|
|
84
|
-
'std.int_to_string': 'pure',
|
|
85
|
-
'std.double_to_string': 'pure',
|
|
86
|
-
'std.string_to_int': 'pure',
|
|
87
|
-
'std.string_to_double': 'pure',
|
|
88
|
-
// ── std: null safety (pure) ──
|
|
89
|
-
'std.null_coalesce': 'pure',
|
|
90
|
-
'std.null_check': 'pure',
|
|
91
|
-
// ── std: control flow (pure) ──
|
|
92
|
-
'std.if': 'pure',
|
|
93
|
-
'std.for': 'pure',
|
|
94
|
-
'std.for_in': 'pure',
|
|
95
|
-
'std.while': 'pure',
|
|
96
|
-
'std.do_while': 'pure',
|
|
97
|
-
'std.switch': 'pure',
|
|
98
|
-
// ── std: error handling (pure) ──
|
|
99
|
-
'std.try': 'pure',
|
|
100
|
-
'std.throw': 'pure',
|
|
101
|
-
'std.rethrow': 'pure',
|
|
102
|
-
// ── std: assertions (pure) ──
|
|
103
|
-
'std.assert': 'pure',
|
|
104
|
-
// ── std: flow control (pure) ──
|
|
105
|
-
'std.return': 'pure',
|
|
106
|
-
'std.break': 'pure',
|
|
107
|
-
'std.continue': 'pure',
|
|
108
|
-
// ── std: generators & async ──
|
|
109
|
-
'std.yield': 'async',
|
|
110
|
-
'std.yield_each': 'async',
|
|
111
|
-
'std.await': 'async',
|
|
112
|
-
'std.async': 'async',
|
|
113
|
-
// ── std: assignment (pure) ──
|
|
114
|
-
'std.assign': 'pure',
|
|
115
|
-
'std.compound_assign': 'pure',
|
|
116
|
-
// ── std: type operations (pure) ──
|
|
117
|
-
'std.is': 'pure',
|
|
118
|
-
'std.is_not': 'pure',
|
|
119
|
-
'std.as': 'pure',
|
|
120
|
-
// ── std: indexing (pure) ──
|
|
121
|
-
'std.index': 'pure',
|
|
122
|
-
'std.index_assign': 'pure',
|
|
123
|
-
// ── std: labels (pure) ──
|
|
124
|
-
'std.labeled': 'pure',
|
|
125
|
-
'std.label': 'pure',
|
|
126
|
-
'std.goto': 'pure',
|
|
127
|
-
'std.paren': 'pure',
|
|
128
|
-
// ── std: string operations (pure) ──
|
|
129
|
-
'std.string_length': 'pure',
|
|
130
|
-
'std.string_is_empty': 'pure',
|
|
131
|
-
'std.string_concat': 'pure',
|
|
132
|
-
'std.string_contains': 'pure',
|
|
133
|
-
'std.string_starts_with': 'pure',
|
|
134
|
-
'std.string_ends_with': 'pure',
|
|
135
|
-
'std.string_index_of': 'pure',
|
|
136
|
-
'std.string_last_index_of': 'pure',
|
|
137
|
-
'std.string_substring': 'pure',
|
|
138
|
-
'std.string_char_at': 'pure',
|
|
139
|
-
'std.string_char_code_at': 'pure',
|
|
140
|
-
'std.string_from_char_code': 'pure',
|
|
141
|
-
'std.string_to_upper': 'pure',
|
|
142
|
-
'std.string_to_lower': 'pure',
|
|
143
|
-
'std.string_trim': 'pure',
|
|
144
|
-
'std.string_trim_start': 'pure',
|
|
145
|
-
'std.string_trim_end': 'pure',
|
|
146
|
-
'std.string_replace': 'pure',
|
|
147
|
-
'std.string_replace_all': 'pure',
|
|
148
|
-
'std.string_split': 'pure',
|
|
149
|
-
'std.string_repeat': 'pure',
|
|
150
|
-
'std.string_pad_left': 'pure',
|
|
151
|
-
'std.string_pad_right': 'pure',
|
|
152
|
-
'std.string_interpolation': 'pure',
|
|
153
|
-
// ── std: regex (pure) ──
|
|
154
|
-
'std.regex_match': 'pure',
|
|
155
|
-
'std.regex_find': 'pure',
|
|
156
|
-
'std.regex_find_all': 'pure',
|
|
157
|
-
'std.regex_replace': 'pure',
|
|
158
|
-
'std.regex_replace_all': 'pure',
|
|
159
|
-
// ── std: math (pure) ──
|
|
160
|
-
'std.math_abs': 'pure',
|
|
161
|
-
'std.math_floor': 'pure',
|
|
162
|
-
'std.math_ceil': 'pure',
|
|
163
|
-
'std.math_round': 'pure',
|
|
164
|
-
'std.math_trunc': 'pure',
|
|
165
|
-
'std.math_sqrt': 'pure',
|
|
166
|
-
'std.math_pow': 'pure',
|
|
167
|
-
'std.math_log': 'pure',
|
|
168
|
-
'std.math_log2': 'pure',
|
|
169
|
-
'std.math_log10': 'pure',
|
|
170
|
-
'std.math_exp': 'pure',
|
|
171
|
-
'std.math_sin': 'pure',
|
|
172
|
-
'std.math_cos': 'pure',
|
|
173
|
-
'std.math_tan': 'pure',
|
|
174
|
-
'std.math_asin': 'pure',
|
|
175
|
-
'std.math_acos': 'pure',
|
|
176
|
-
'std.math_atan': 'pure',
|
|
177
|
-
'std.math_atan2': 'pure',
|
|
178
|
-
'std.math_min': 'pure',
|
|
179
|
-
'std.math_max': 'pure',
|
|
180
|
-
'std.math_clamp': 'pure',
|
|
181
|
-
'std.math_pi': 'pure',
|
|
182
|
-
'std.math_e': 'pure',
|
|
183
|
-
'std.math_infinity': 'pure',
|
|
184
|
-
'std.math_nan': 'pure',
|
|
185
|
-
'std.math_is_nan': 'pure',
|
|
186
|
-
'std.math_is_finite': 'pure',
|
|
187
|
-
'std.math_is_infinite': 'pure',
|
|
188
|
-
'std.math_sign': 'pure',
|
|
189
|
-
'std.math_gcd': 'pure',
|
|
190
|
-
'std.math_lcm': 'pure',
|
|
191
|
-
// ── std_io ──
|
|
192
|
-
'std_io.print_error': 'io',
|
|
193
|
-
'std_io.read_line': 'io',
|
|
194
|
-
'std_io.exit': 'process',
|
|
195
|
-
'std_io.panic': 'process',
|
|
196
|
-
'std_io.sleep_ms': 'time',
|
|
197
|
-
'std_io.timestamp_ms': 'time',
|
|
198
|
-
'std_io.random_int': 'random',
|
|
199
|
-
'std_io.random_double': 'random',
|
|
200
|
-
'std_io.env_get': 'io',
|
|
201
|
-
'std_io.args_get': 'io',
|
|
202
|
-
// ── std_fs ──
|
|
203
|
-
'std_fs.file_read': 'fs',
|
|
204
|
-
'std_fs.file_read_bytes': 'fs',
|
|
205
|
-
'std_fs.file_write': 'fs',
|
|
206
|
-
'std_fs.file_write_bytes': 'fs',
|
|
207
|
-
'std_fs.file_append': 'fs',
|
|
208
|
-
'std_fs.file_exists': 'fs',
|
|
209
|
-
'std_fs.file_delete': 'fs',
|
|
210
|
-
'std_fs.dir_list': 'fs',
|
|
211
|
-
'std_fs.dir_create': 'fs',
|
|
212
|
-
'std_fs.dir_exists': 'fs',
|
|
213
|
-
// ── std_collections (all pure) ──
|
|
214
|
-
'std_collections.list_push': 'pure',
|
|
215
|
-
'std_collections.list_pop': 'pure',
|
|
216
|
-
'std_collections.list_insert': 'pure',
|
|
217
|
-
'std_collections.list_remove_at': 'pure',
|
|
218
|
-
'std_collections.list_get': 'pure',
|
|
219
|
-
'std_collections.list_set': 'pure',
|
|
220
|
-
'std_collections.list_length': 'pure',
|
|
221
|
-
'std_collections.list_is_empty': 'pure',
|
|
222
|
-
'std_collections.list_first': 'pure',
|
|
223
|
-
'std_collections.list_last': 'pure',
|
|
224
|
-
'std_collections.list_single': 'pure',
|
|
225
|
-
'std_collections.list_contains': 'pure',
|
|
226
|
-
'std_collections.list_index_of': 'pure',
|
|
227
|
-
'std_collections.list_map': 'pure',
|
|
228
|
-
'std_collections.list_filter': 'pure',
|
|
229
|
-
'std_collections.list_reduce': 'pure',
|
|
230
|
-
'std_collections.list_find': 'pure',
|
|
231
|
-
'std_collections.list_any': 'pure',
|
|
232
|
-
'std_collections.list_all': 'pure',
|
|
233
|
-
'std_collections.list_none': 'pure',
|
|
234
|
-
'std_collections.list_sort': 'pure',
|
|
235
|
-
'std_collections.list_sort_by': 'pure',
|
|
236
|
-
'std_collections.list_reverse': 'pure',
|
|
237
|
-
'std_collections.list_slice': 'pure',
|
|
238
|
-
'std_collections.list_flat_map': 'pure',
|
|
239
|
-
'std_collections.list_zip': 'pure',
|
|
240
|
-
'std_collections.list_take': 'pure',
|
|
241
|
-
'std_collections.list_drop': 'pure',
|
|
242
|
-
'std_collections.list_concat': 'pure',
|
|
243
|
-
'std_collections.map_get': 'pure',
|
|
244
|
-
'std_collections.map_set': 'pure',
|
|
245
|
-
'std_collections.map_delete': 'pure',
|
|
246
|
-
'std_collections.map_contains_key': 'pure',
|
|
247
|
-
'std_collections.map_keys': 'pure',
|
|
248
|
-
'std_collections.map_values': 'pure',
|
|
249
|
-
'std_collections.map_entries': 'pure',
|
|
250
|
-
'std_collections.map_from_entries': 'pure',
|
|
251
|
-
'std_collections.map_merge': 'pure',
|
|
252
|
-
'std_collections.map_map': 'pure',
|
|
253
|
-
'std_collections.map_filter': 'pure',
|
|
254
|
-
'std_collections.map_is_empty': 'pure',
|
|
255
|
-
'std_collections.map_length': 'pure',
|
|
256
|
-
'std_collections.set_create': 'pure',
|
|
257
|
-
'std_collections.set_add': 'pure',
|
|
258
|
-
'std_collections.set_remove': 'pure',
|
|
259
|
-
'std_collections.set_contains': 'pure',
|
|
260
|
-
'std_collections.set_union': 'pure',
|
|
261
|
-
'std_collections.set_intersection': 'pure',
|
|
262
|
-
'std_collections.set_difference': 'pure',
|
|
263
|
-
'std_collections.set_length': 'pure',
|
|
264
|
-
'std_collections.set_is_empty': 'pure',
|
|
265
|
-
'std_collections.set_to_list': 'pure',
|
|
266
|
-
'std_collections.string_join': 'pure',
|
|
267
|
-
// ── std_convert (all pure) ──
|
|
268
|
-
'std_convert.json_encode': 'pure',
|
|
269
|
-
'std_convert.json_decode': 'pure',
|
|
270
|
-
'std_convert.utf8_encode': 'pure',
|
|
271
|
-
'std_convert.utf8_decode': 'pure',
|
|
272
|
-
'std_convert.base64_encode': 'pure',
|
|
273
|
-
'std_convert.base64_decode': 'pure',
|
|
274
|
-
// ── std_time ──
|
|
275
|
-
'std_time.now': 'time',
|
|
276
|
-
'std_time.now_micros': 'time',
|
|
277
|
-
'std_time.format_timestamp': 'time',
|
|
278
|
-
'std_time.parse_timestamp': 'time',
|
|
279
|
-
'std_time.duration_add': 'pure',
|
|
280
|
-
'std_time.duration_subtract': 'pure',
|
|
281
|
-
'std_time.year': 'time',
|
|
282
|
-
'std_time.month': 'time',
|
|
283
|
-
'std_time.day': 'time',
|
|
284
|
-
'std_time.hour': 'time',
|
|
285
|
-
'std_time.minute': 'time',
|
|
286
|
-
'std_time.second': 'time',
|
|
287
|
-
// ── std_memory (all memory/unsafe) ──
|
|
288
|
-
'std_memory.memory_alloc': 'memory',
|
|
289
|
-
'std_memory.memory_free': 'memory',
|
|
290
|
-
'std_memory.memory_realloc': 'memory',
|
|
291
|
-
'std_memory.memory_read_i8': 'memory',
|
|
292
|
-
'std_memory.memory_read_u8': 'memory',
|
|
293
|
-
'std_memory.memory_read_i16': 'memory',
|
|
294
|
-
'std_memory.memory_read_u16': 'memory',
|
|
295
|
-
'std_memory.memory_read_i32': 'memory',
|
|
296
|
-
'std_memory.memory_read_u32': 'memory',
|
|
297
|
-
'std_memory.memory_read_i64': 'memory',
|
|
298
|
-
'std_memory.memory_read_u64': 'memory',
|
|
299
|
-
'std_memory.memory_read_f32': 'memory',
|
|
300
|
-
'std_memory.memory_read_f64': 'memory',
|
|
301
|
-
'std_memory.memory_write_i8': 'memory',
|
|
302
|
-
'std_memory.memory_write_u8': 'memory',
|
|
303
|
-
'std_memory.memory_write_i16': 'memory',
|
|
304
|
-
'std_memory.memory_write_u16': 'memory',
|
|
305
|
-
'std_memory.memory_write_i32': 'memory',
|
|
306
|
-
'std_memory.memory_write_u32': 'memory',
|
|
307
|
-
'std_memory.memory_write_i64': 'memory',
|
|
308
|
-
'std_memory.memory_write_u64': 'memory',
|
|
309
|
-
'std_memory.memory_write_f32': 'memory',
|
|
310
|
-
'std_memory.memory_write_f64': 'memory',
|
|
311
|
-
'std_memory.memory_copy': 'memory',
|
|
312
|
-
'std_memory.memory_set': 'memory',
|
|
313
|
-
'std_memory.memory_compare': 'memory',
|
|
314
|
-
'std_memory.ptr_add': 'memory',
|
|
315
|
-
'std_memory.ptr_sub': 'memory',
|
|
316
|
-
'std_memory.ptr_diff': 'memory',
|
|
317
|
-
'std_memory.stack_alloc': 'memory',
|
|
318
|
-
'std_memory.stack_push_frame': 'memory',
|
|
319
|
-
'std_memory.stack_pop_frame': 'memory',
|
|
320
|
-
'std_memory.memory_sizeof': 'memory',
|
|
321
|
-
'std_memory.address_of': 'memory',
|
|
322
|
-
'std_memory.deref': 'memory',
|
|
323
|
-
'std_memory.nullptr': 'memory',
|
|
324
|
-
'std_memory.memory_heap_size': 'memory',
|
|
325
|
-
'std_memory.memory_stack_size': 'memory',
|
|
326
|
-
// ── std_concurrency ──
|
|
327
|
-
'std_concurrency.thread_spawn': 'concurrency',
|
|
328
|
-
'std_concurrency.thread_join': 'concurrency',
|
|
329
|
-
'std_concurrency.mutex_create': 'concurrency',
|
|
330
|
-
'std_concurrency.mutex_lock': 'concurrency',
|
|
331
|
-
'std_concurrency.mutex_unlock': 'concurrency',
|
|
332
|
-
'std_concurrency.scoped_lock': 'concurrency',
|
|
333
|
-
'std_concurrency.atomic_load': 'concurrency',
|
|
334
|
-
'std_concurrency.atomic_store': 'concurrency',
|
|
335
|
-
'std_concurrency.atomic_compare_exchange': 'concurrency',
|
|
336
|
-
};
|
|
337
|
-
//# sourceMappingURL=capability_table.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"capability_table.js","sourceRoot":"","sources":["../src/capability_table.ts"],"names":[],"mappings":"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"}
|