just-engine 0.1.0

A ground-up ES6 JavaScript engine with tree-walking interpreter, bytecode VMs, and Cranelift JIT compiler
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
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
//! String built-in.
//!
//! Provides String constructor and prototype methods.

use crate::runner::ds::error::JErrorType;
use crate::runner::ds::value::{JsValue, JsNumberType};
use crate::runner::plugin::registry::BuiltInRegistry;
use crate::runner::plugin::types::{BuiltInObject, EvalContext};

/// Register the String built-in with the registry.
pub fn register(registry: &mut BuiltInRegistry) {
    let string = BuiltInObject::new("String")
        .with_constructor(string_constructor)
        .add_method("charAt", string_char_at)
        .add_method("charCodeAt", string_char_code_at)
        .add_method("substring", string_substring)
        .add_method("slice", string_slice)
        .add_method("indexOf", string_index_of)
        .add_method("lastIndexOf", string_last_index_of)
        .add_method("includes", string_includes)
        .add_method("startsWith", string_starts_with)
        .add_method("endsWith", string_ends_with)
        .add_method("split", string_split)
        .add_method("trim", string_trim)
        .add_method("trimStart", string_trim_start)
        .add_method("trimEnd", string_trim_end)
        .add_method("toUpperCase", string_to_upper_case)
        .add_method("toLowerCase", string_to_lower_case)
        .add_method("repeat", string_repeat)
        .add_method("padStart", string_pad_start)
        .add_method("padEnd", string_pad_end)
        .add_method("replace", string_replace)
        .add_method("concat", string_concat)
        .add_method("fromCharCode", string_from_char_code);

    registry.register_object(string);
}

/// Get a string from a JsValue.
fn to_string(value: &JsValue) -> String {
    match value {
        JsValue::String(s) => s.clone(),
        JsValue::Undefined => "undefined".to_string(),
        JsValue::Null => "null".to_string(),
        JsValue::Boolean(b) => b.to_string(),
        JsValue::Number(n) => n.to_string(),
        JsValue::Symbol(s) => s.to_string(),
        JsValue::Object(_) => "[object Object]".to_string(),
    }
}

/// String constructor.
fn string_constructor(
    _ctx: &mut EvalContext,
    _this: JsValue,
    args: Vec<JsValue>,
) -> Result<JsValue, JErrorType> {
    if args.is_empty() {
        Ok(JsValue::String(String::new()))
    } else {
        Ok(JsValue::String(to_string(&args[0])))
    }
}

/// String.prototype.charAt
fn string_char_at(
    _ctx: &mut EvalContext,
    this: JsValue,
    args: Vec<JsValue>,
) -> Result<JsValue, JErrorType> {
    let s = to_string(&this);
    let index = if args.is_empty() {
        0
    } else {
        to_integer(&args[0])
    };

    if index < 0 || index as usize >= s.chars().count() {
        return Ok(JsValue::String(String::new()));
    }

    Ok(JsValue::String(
        s.chars().nth(index as usize).map(|c| c.to_string()).unwrap_or_default()
    ))
}

/// String.prototype.charCodeAt
fn string_char_code_at(
    _ctx: &mut EvalContext,
    this: JsValue,
    args: Vec<JsValue>,
) -> Result<JsValue, JErrorType> {
    let s = to_string(&this);
    let index = if args.is_empty() {
        0
    } else {
        to_integer(&args[0])
    };

    if index < 0 || index as usize >= s.chars().count() {
        return Ok(JsValue::Number(JsNumberType::NaN));
    }

    let code = s.chars().nth(index as usize).map(|c| c as i64).unwrap_or(0);
    Ok(JsValue::Number(JsNumberType::Integer(code)))
}

/// String.prototype.substring
fn string_substring(
    _ctx: &mut EvalContext,
    this: JsValue,
    args: Vec<JsValue>,
) -> Result<JsValue, JErrorType> {
    let s = to_string(&this);
    let len = s.chars().count() as i64;

    let mut start = if args.is_empty() {
        0
    } else {
        to_integer(&args[0]).max(0).min(len)
    };

    let mut end = if args.len() < 2 {
        len
    } else {
        to_integer(&args[1]).max(0).min(len)
    };

    // Swap if start > end
    if start > end {
        std::mem::swap(&mut start, &mut end);
    }

    let result: String = s.chars()
        .skip(start as usize)
        .take((end - start) as usize)
        .collect();

    Ok(JsValue::String(result))
}

/// String.prototype.slice
fn string_slice(
    _ctx: &mut EvalContext,
    this: JsValue,
    args: Vec<JsValue>,
) -> Result<JsValue, JErrorType> {
    let s = to_string(&this);
    let len = s.chars().count() as i64;

    let start = if args.is_empty() {
        0
    } else {
        let idx = to_integer(&args[0]);
        if idx < 0 {
            (len + idx).max(0)
        } else {
            idx.min(len)
        }
    };

    let end = if args.len() < 2 {
        len
    } else {
        let idx = to_integer(&args[1]);
        if idx < 0 {
            (len + idx).max(0)
        } else {
            idx.min(len)
        }
    };

    if start >= end {
        return Ok(JsValue::String(String::new()));
    }

    let result: String = s.chars()
        .skip(start as usize)
        .take((end - start) as usize)
        .collect();

    Ok(JsValue::String(result))
}

/// String.prototype.indexOf
fn string_index_of(
    _ctx: &mut EvalContext,
    this: JsValue,
    args: Vec<JsValue>,
) -> Result<JsValue, JErrorType> {
    let s = to_string(&this);

    if args.is_empty() {
        return Ok(JsValue::Number(JsNumberType::Integer(-1)));
    }

    let search = to_string(&args[0]);
    let position = if args.len() > 1 {
        to_integer(&args[1]).max(0) as usize
    } else {
        0
    };

    if position >= s.len() {
        return Ok(JsValue::Number(JsNumberType::Integer(-1)));
    }

    match s[position..].find(&search) {
        Some(idx) => Ok(JsValue::Number(JsNumberType::Integer((position + idx) as i64))),
        None => Ok(JsValue::Number(JsNumberType::Integer(-1))),
    }
}

/// String.prototype.lastIndexOf
fn string_last_index_of(
    _ctx: &mut EvalContext,
    this: JsValue,
    args: Vec<JsValue>,
) -> Result<JsValue, JErrorType> {
    let s = to_string(&this);

    if args.is_empty() {
        return Ok(JsValue::Number(JsNumberType::Integer(-1)));
    }

    let search = to_string(&args[0]);

    match s.rfind(&search) {
        Some(idx) => Ok(JsValue::Number(JsNumberType::Integer(idx as i64))),
        None => Ok(JsValue::Number(JsNumberType::Integer(-1))),
    }
}

/// String.prototype.includes
fn string_includes(
    _ctx: &mut EvalContext,
    this: JsValue,
    args: Vec<JsValue>,
) -> Result<JsValue, JErrorType> {
    let s = to_string(&this);

    if args.is_empty() {
        return Ok(JsValue::Boolean(false));
    }

    let search = to_string(&args[0]);
    let position = if args.len() > 1 {
        to_integer(&args[1]).max(0) as usize
    } else {
        0
    };

    if position >= s.len() {
        return Ok(JsValue::Boolean(false));
    }

    Ok(JsValue::Boolean(s[position..].contains(&search)))
}

/// String.prototype.startsWith
fn string_starts_with(
    _ctx: &mut EvalContext,
    this: JsValue,
    args: Vec<JsValue>,
) -> Result<JsValue, JErrorType> {
    let s = to_string(&this);

    if args.is_empty() {
        return Ok(JsValue::Boolean(false));
    }

    let search = to_string(&args[0]);
    let position = if args.len() > 1 {
        to_integer(&args[1]).max(0) as usize
    } else {
        0
    };

    if position >= s.len() {
        return Ok(JsValue::Boolean(search.is_empty()));
    }

    Ok(JsValue::Boolean(s[position..].starts_with(&search)))
}

/// String.prototype.endsWith
fn string_ends_with(
    _ctx: &mut EvalContext,
    this: JsValue,
    args: Vec<JsValue>,
) -> Result<JsValue, JErrorType> {
    let s = to_string(&this);

    if args.is_empty() {
        return Ok(JsValue::Boolean(false));
    }

    let search = to_string(&args[0]);
    let end_position = if args.len() > 1 {
        to_integer(&args[1]).max(0).min(s.len() as i64) as usize
    } else {
        s.len()
    };

    Ok(JsValue::Boolean(s[..end_position].ends_with(&search)))
}

/// String.prototype.split
fn string_split(
    _ctx: &mut EvalContext,
    this: JsValue,
    args: Vec<JsValue>,
) -> Result<JsValue, JErrorType> {
    let s = to_string(&this);

    // TODO: Return an array when array creation is implemented
    // For now, just describe what would happen
    if args.is_empty() {
        // Return array containing the whole string
        Err(JErrorType::TypeError("String.split not yet fully implemented (array creation needed)".to_string()))
    } else {
        let separator = to_string(&args[0]);
        let _parts: Vec<&str> = s.split(&separator).collect();
        Err(JErrorType::TypeError("String.split not yet fully implemented (array creation needed)".to_string()))
    }
}

/// String.prototype.trim
fn string_trim(
    _ctx: &mut EvalContext,
    this: JsValue,
    _args: Vec<JsValue>,
) -> Result<JsValue, JErrorType> {
    let s = to_string(&this);
    Ok(JsValue::String(s.trim().to_string()))
}

/// String.prototype.trimStart
fn string_trim_start(
    _ctx: &mut EvalContext,
    this: JsValue,
    _args: Vec<JsValue>,
) -> Result<JsValue, JErrorType> {
    let s = to_string(&this);
    Ok(JsValue::String(s.trim_start().to_string()))
}

/// String.prototype.trimEnd
fn string_trim_end(
    _ctx: &mut EvalContext,
    this: JsValue,
    _args: Vec<JsValue>,
) -> Result<JsValue, JErrorType> {
    let s = to_string(&this);
    Ok(JsValue::String(s.trim_end().to_string()))
}

/// String.prototype.toUpperCase
fn string_to_upper_case(
    _ctx: &mut EvalContext,
    this: JsValue,
    _args: Vec<JsValue>,
) -> Result<JsValue, JErrorType> {
    let s = to_string(&this);
    Ok(JsValue::String(s.to_uppercase()))
}

/// String.prototype.toLowerCase
fn string_to_lower_case(
    _ctx: &mut EvalContext,
    this: JsValue,
    _args: Vec<JsValue>,
) -> Result<JsValue, JErrorType> {
    let s = to_string(&this);
    Ok(JsValue::String(s.to_lowercase()))
}

/// String.prototype.repeat
fn string_repeat(
    _ctx: &mut EvalContext,
    this: JsValue,
    args: Vec<JsValue>,
) -> Result<JsValue, JErrorType> {
    let s = to_string(&this);
    let count = if args.is_empty() {
        0
    } else {
        let n = to_integer(&args[0]);
        if n < 0 {
            return Err(JErrorType::RangeError("Invalid count value".to_string()));
        }
        n as usize
    };

    Ok(JsValue::String(s.repeat(count)))
}

/// String.prototype.padStart
fn string_pad_start(
    _ctx: &mut EvalContext,
    this: JsValue,
    args: Vec<JsValue>,
) -> Result<JsValue, JErrorType> {
    let s = to_string(&this);
    let target_len = if args.is_empty() {
        return Ok(JsValue::String(s));
    } else {
        to_integer(&args[0]).max(0) as usize
    };

    if s.len() >= target_len {
        return Ok(JsValue::String(s));
    }

    let pad_string = if args.len() > 1 {
        to_string(&args[1])
    } else {
        " ".to_string()
    };

    if pad_string.is_empty() {
        return Ok(JsValue::String(s));
    }

    let pad_len = target_len - s.len();
    let mut result = String::with_capacity(target_len);

    let full_pads = pad_len / pad_string.len();
    let remaining = pad_len % pad_string.len();

    for _ in 0..full_pads {
        result.push_str(&pad_string);
    }
    result.push_str(&pad_string[..remaining]);
    result.push_str(&s);

    Ok(JsValue::String(result))
}

/// String.prototype.padEnd
fn string_pad_end(
    _ctx: &mut EvalContext,
    this: JsValue,
    args: Vec<JsValue>,
) -> Result<JsValue, JErrorType> {
    let s = to_string(&this);
    let target_len = if args.is_empty() {
        return Ok(JsValue::String(s));
    } else {
        to_integer(&args[0]).max(0) as usize
    };

    if s.len() >= target_len {
        return Ok(JsValue::String(s));
    }

    let pad_string = if args.len() > 1 {
        to_string(&args[1])
    } else {
        " ".to_string()
    };

    if pad_string.is_empty() {
        return Ok(JsValue::String(s));
    }

    let pad_len = target_len - s.len();
    let mut result = s;

    let full_pads = pad_len / pad_string.len();
    let remaining = pad_len % pad_string.len();

    for _ in 0..full_pads {
        result.push_str(&pad_string);
    }
    result.push_str(&pad_string[..remaining]);

    Ok(JsValue::String(result))
}

/// String.prototype.replace
fn string_replace(
    _ctx: &mut EvalContext,
    this: JsValue,
    args: Vec<JsValue>,
) -> Result<JsValue, JErrorType> {
    let s = to_string(&this);

    if args.len() < 2 {
        return Ok(JsValue::String(s));
    }

    let search = to_string(&args[0]);
    let replacement = to_string(&args[1]);

    // Simple string replacement (first occurrence only)
    Ok(JsValue::String(s.replacen(&search, &replacement, 1)))
}

/// String.prototype.concat
fn string_concat(
    _ctx: &mut EvalContext,
    this: JsValue,
    args: Vec<JsValue>,
) -> Result<JsValue, JErrorType> {
    let mut result = to_string(&this);

    for arg in args {
        result.push_str(&to_string(&arg));
    }

    Ok(JsValue::String(result))
}

/// String.fromCharCode - Create string from character codes.
fn string_from_char_code(
    _ctx: &mut EvalContext,
    _this: JsValue,
    args: Vec<JsValue>,
) -> Result<JsValue, JErrorType> {
    let mut result = String::new();

    for arg in args {
        let code = to_integer(&arg);
        if let Some(c) = char::from_u32((code & 0xFFFF) as u32) {
            result.push(c);
        }
    }

    Ok(JsValue::String(result))
}

/// Convert JsValue to integer.
fn to_integer(value: &JsValue) -> i64 {
    match value {
        JsValue::Number(JsNumberType::Integer(i)) => *i,
        JsValue::Number(JsNumberType::Float(f)) => *f as i64,
        JsValue::Number(JsNumberType::NaN) => 0,
        JsValue::Number(JsNumberType::PositiveInfinity) => i64::MAX,
        JsValue::Number(JsNumberType::NegativeInfinity) => i64::MIN,
        JsValue::String(s) => s.trim().parse().unwrap_or(0),
        JsValue::Boolean(true) => 1,
        JsValue::Boolean(false) => 0,
        _ => 0,
    }
}