tsrun 0.1.23

A TypeScript interpreter designed for embedding in applications
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
//! Prelude module for no_std compatibility.
//!
//! This module re-exports types from core/alloc/std based on feature flags,
//! allowing the rest of the codebase to use a consistent import path.

// ═══════════════════════════════════════════════════════════════════════════════
// Core types (always available)
// ═══════════════════════════════════════════════════════════════════════════════

pub use core::{
    cell::{Cell, Ref, RefCell, RefMut},
    fmt,
    hash::{Hash, Hasher},
    mem,
    ptr::NonNull,
};

// ═══════════════════════════════════════════════════════════════════════════════
// Alloc types (conditional on std vs no_std)
// ═══════════════════════════════════════════════════════════════════════════════

#[cfg(feature = "std")]
pub use std::{
    boxed::Box,
    collections::VecDeque,
    format,
    rc::{Rc, Weak},
    string::{String, ToString},
    vec,
    vec::Vec,
};

#[cfg(not(feature = "std"))]
pub use alloc::{
    boxed::Box,
    collections::VecDeque,
    format,
    rc::{Rc, Weak},
    string::{String, ToString},
    vec,
    vec::Vec,
};

// ═══════════════════════════════════════════════════════════════════════════════
// FxHashMap/FxHashSet - use rustc-hash for std, define our own for no_std
// ═══════════════════════════════════════════════════════════════════════════════
#[cfg(feature = "std")]
pub use rustc_hash::{FxHashMap, FxHashSet};

#[cfg(not(feature = "std"))]
pub type FxHashMap<K, V> =
    hashbrown::HashMap<K, V, core::hash::BuildHasherDefault<rustc_hash::FxHasher>>;

#[cfg(not(feature = "std"))]
pub type FxHashSet<T> = hashbrown::HashSet<T, core::hash::BuildHasherDefault<rustc_hash::FxHasher>>;

// ═══════════════════════════════════════════════════════════════════════════════
// IndexMap/IndexSet - use FxHasher for both std and no_std
// ═══════════════════════════════════════════════════════════════════════════════

pub type IndexMap<K, V> =
    indexmap::IndexMap<K, V, core::hash::BuildHasherDefault<rustc_hash::FxHasher>>;

pub type IndexSet<T> = indexmap::IndexSet<T, core::hash::BuildHasherDefault<rustc_hash::FxHasher>>;

/// Create an empty IndexMap
#[inline]
pub fn index_map_new<K, V>() -> IndexMap<K, V>
where
    K: core::hash::Hash + Eq,
{
    indexmap::IndexMap::with_hasher(Default::default())
}

/// Create an IndexMap with the given capacity
#[inline]
pub fn index_map_with_capacity<K, V>(capacity: usize) -> IndexMap<K, V>
where
    K: core::hash::Hash + Eq,
{
    indexmap::IndexMap::with_capacity_and_hasher(capacity, Default::default())
}

/// Create an empty IndexSet
#[inline]
pub fn index_set_new<T>() -> IndexSet<T>
where
    T: core::hash::Hash + Eq,
{
    indexmap::IndexSet::with_hasher(Default::default())
}

/// Create an IndexSet with the given capacity
#[inline]
pub fn index_set_with_capacity<T>(capacity: usize) -> IndexSet<T>
where
    T: core::hash::Hash + Eq,
{
    indexmap::IndexSet::with_capacity_and_hasher(capacity, Default::default())
}

// ═══════════════════════════════════════════════════════════════════════════════
// Math functions - use std in std mode, libm in no_std mode
// ═══════════════════════════════════════════════════════════════════════════════

/// Math operations module providing cross-platform math functions
pub mod math {
    #[cfg(feature = "std")]
    #[inline]
    pub fn floor(x: f64) -> f64 {
        x.floor()
    }

    #[cfg(not(feature = "std"))]
    #[inline]
    pub fn floor(x: f64) -> f64 {
        libm::floor(x)
    }

    #[cfg(feature = "std")]
    #[inline]
    pub fn ceil(x: f64) -> f64 {
        x.ceil()
    }

    #[cfg(not(feature = "std"))]
    #[inline]
    pub fn ceil(x: f64) -> f64 {
        libm::ceil(x)
    }

    #[cfg(feature = "std")]
    #[inline]
    pub fn round(x: f64) -> f64 {
        x.round()
    }

    #[cfg(not(feature = "std"))]
    #[inline]
    pub fn round(x: f64) -> f64 {
        libm::round(x)
    }

    #[cfg(feature = "std")]
    #[inline]
    pub fn trunc(x: f64) -> f64 {
        x.trunc()
    }

    #[cfg(not(feature = "std"))]
    #[inline]
    pub fn trunc(x: f64) -> f64 {
        libm::trunc(x)
    }

    #[cfg(feature = "std")]
    #[inline]
    pub fn fract(x: f64) -> f64 {
        x.fract()
    }

    #[cfg(not(feature = "std"))]
    #[inline]
    pub fn fract(x: f64) -> f64 {
        x - libm::trunc(x)
    }

    #[cfg(feature = "std")]
    #[inline]
    pub fn powf(base: f64, exp: f64) -> f64 {
        base.powf(exp)
    }

    #[cfg(not(feature = "std"))]
    #[inline]
    pub fn powf(base: f64, exp: f64) -> f64 {
        libm::pow(base, exp)
    }

    #[cfg(feature = "std")]
    #[inline]
    pub fn sqrt(x: f64) -> f64 {
        x.sqrt()
    }

    #[cfg(not(feature = "std"))]
    #[inline]
    pub fn sqrt(x: f64) -> f64 {
        libm::sqrt(x)
    }

    #[cfg(feature = "std")]
    #[inline]
    pub fn ln(x: f64) -> f64 {
        x.ln()
    }

    #[cfg(not(feature = "std"))]
    #[inline]
    pub fn ln(x: f64) -> f64 {
        libm::log(x)
    }

    #[cfg(feature = "std")]
    #[inline]
    pub fn log10(x: f64) -> f64 {
        x.log10()
    }

    #[cfg(not(feature = "std"))]
    #[inline]
    pub fn log10(x: f64) -> f64 {
        libm::log10(x)
    }

    #[cfg(feature = "std")]
    #[inline]
    pub fn log2(x: f64) -> f64 {
        x.log2()
    }

    #[cfg(not(feature = "std"))]
    #[inline]
    pub fn log2(x: f64) -> f64 {
        libm::log2(x)
    }

    #[cfg(feature = "std")]
    #[inline]
    pub fn exp(x: f64) -> f64 {
        x.exp()
    }

    #[cfg(not(feature = "std"))]
    #[inline]
    pub fn exp(x: f64) -> f64 {
        libm::exp(x)
    }

    #[cfg(feature = "std")]
    #[inline]
    pub fn expm1(x: f64) -> f64 {
        x.exp_m1()
    }

    #[cfg(not(feature = "std"))]
    #[inline]
    pub fn expm1(x: f64) -> f64 {
        libm::expm1(x)
    }

    #[cfg(feature = "std")]
    #[inline]
    pub fn sin(x: f64) -> f64 {
        x.sin()
    }

    #[cfg(not(feature = "std"))]
    #[inline]
    pub fn sin(x: f64) -> f64 {
        libm::sin(x)
    }

    #[cfg(feature = "std")]
    #[inline]
    pub fn cos(x: f64) -> f64 {
        x.cos()
    }

    #[cfg(not(feature = "std"))]
    #[inline]
    pub fn cos(x: f64) -> f64 {
        libm::cos(x)
    }

    #[cfg(feature = "std")]
    #[inline]
    pub fn tan(x: f64) -> f64 {
        x.tan()
    }

    #[cfg(not(feature = "std"))]
    #[inline]
    pub fn tan(x: f64) -> f64 {
        libm::tan(x)
    }

    #[cfg(feature = "std")]
    #[inline]
    pub fn asin(x: f64) -> f64 {
        x.asin()
    }

    #[cfg(not(feature = "std"))]
    #[inline]
    pub fn asin(x: f64) -> f64 {
        libm::asin(x)
    }

    #[cfg(feature = "std")]
    #[inline]
    pub fn acos(x: f64) -> f64 {
        x.acos()
    }

    #[cfg(not(feature = "std"))]
    #[inline]
    pub fn acos(x: f64) -> f64 {
        libm::acos(x)
    }

    #[cfg(feature = "std")]
    #[inline]
    pub fn atan(x: f64) -> f64 {
        x.atan()
    }

    #[cfg(not(feature = "std"))]
    #[inline]
    pub fn atan(x: f64) -> f64 {
        libm::atan(x)
    }

    #[cfg(feature = "std")]
    #[inline]
    pub fn atan2(y: f64, x: f64) -> f64 {
        y.atan2(x)
    }

    #[cfg(not(feature = "std"))]
    #[inline]
    pub fn atan2(y: f64, x: f64) -> f64 {
        libm::atan2(y, x)
    }

    #[cfg(feature = "std")]
    #[inline]
    pub fn sinh(x: f64) -> f64 {
        x.sinh()
    }

    #[cfg(not(feature = "std"))]
    #[inline]
    pub fn sinh(x: f64) -> f64 {
        libm::sinh(x)
    }

    #[cfg(feature = "std")]
    #[inline]
    pub fn cosh(x: f64) -> f64 {
        x.cosh()
    }

    #[cfg(not(feature = "std"))]
    #[inline]
    pub fn cosh(x: f64) -> f64 {
        libm::cosh(x)
    }

    #[cfg(feature = "std")]
    #[inline]
    pub fn tanh(x: f64) -> f64 {
        x.tanh()
    }

    #[cfg(not(feature = "std"))]
    #[inline]
    pub fn tanh(x: f64) -> f64 {
        libm::tanh(x)
    }

    #[cfg(feature = "std")]
    #[inline]
    pub fn asinh(x: f64) -> f64 {
        x.asinh()
    }

    #[cfg(not(feature = "std"))]
    #[inline]
    pub fn asinh(x: f64) -> f64 {
        libm::asinh(x)
    }

    #[cfg(feature = "std")]
    #[inline]
    pub fn acosh(x: f64) -> f64 {
        x.acosh()
    }

    #[cfg(not(feature = "std"))]
    #[inline]
    pub fn acosh(x: f64) -> f64 {
        libm::acosh(x)
    }

    #[cfg(feature = "std")]
    #[inline]
    pub fn atanh(x: f64) -> f64 {
        x.atanh()
    }

    #[cfg(not(feature = "std"))]
    #[inline]
    pub fn atanh(x: f64) -> f64 {
        libm::atanh(x)
    }

    #[cfg(feature = "std")]
    #[inline]
    pub fn cbrt(x: f64) -> f64 {
        x.cbrt()
    }

    #[cfg(not(feature = "std"))]
    #[inline]
    pub fn cbrt(x: f64) -> f64 {
        libm::cbrt(x)
    }

    #[cfg(feature = "std")]
    #[inline]
    pub fn log1p(x: f64) -> f64 {
        x.ln_1p()
    }

    #[cfg(not(feature = "std"))]
    #[inline]
    pub fn log1p(x: f64) -> f64 {
        libm::log1p(x)
    }

    #[cfg(feature = "std")]
    #[inline]
    pub fn powi(base: f64, exp: i32) -> f64 {
        base.powi(exp)
    }

    #[cfg(not(feature = "std"))]
    #[inline]
    pub fn powi(base: f64, exp: i32) -> f64 {
        libm::pow(base, exp as f64)
    }

    /// Euclidean remainder (modulo) - always returns positive result
    #[cfg(feature = "std")]
    #[inline]
    pub fn rem_euclid(x: f64, y: f64) -> f64 {
        x.rem_euclid(y)
    }

    /// Euclidean remainder (modulo) - always returns positive result
    #[cfg(not(feature = "std"))]
    #[inline]
    pub fn rem_euclid(x: f64, y: f64) -> f64 {
        let r = libm::fmod(x, y);
        if r < 0.0 { r + y.abs() } else { r }
    }
}