3 releases

0.0.3 Aug 9, 2024
0.0.2 Aug 6, 2024
0.0.1 Jul 27, 2024

#76 in Configuration

Download history 106/week @ 2024-07-23 31/week @ 2024-07-30 221/week @ 2024-08-06 9/week @ 2024-08-13

230 downloads per month

Custom license

190KB
5K SLoC

Rust 4.5K SLoC // 0.0% comments TypeScript 509 SLoC // 0.1% comments JavaScript 71 SLoC

TiScript - Turing-Incomplete TypeScript as a Configuration Language crates.io CI

TiScript is a configuration language designed to be intuitive and easy for humans and machines. It draws inspiration from TypeScript and JSON, offering the benefits of both:

  • Readability and maintainability for humans, similar to JSON.
  • Type safety and structure for machines inspired by TypeScript.

TiScript is intentionally designed to be Turing incomplete. This means it focuses on defining configurations and is not intended for general programming tasks. However, since it's a subset of TypeScript, you can still leverage the TypeScript development toolkit for features like language services.

Project Status

This is a work in progress. The current implementation is MVP and not intended to be used in production.

Example

TiScript definition (it's strict subset of TypeScript):

// editor_config.ts
const LF = "\x0A";

export const tabSize = 4;
export const trimTrailingWhitespace = true;
export const endOfLine = LF;
export const encoding = "utf-8";

Currently, the only interface is a command called tiscript(1) (or cargo run on development).

$ cargo run ./editor_config.ts

the output is:

{
    "tabSize": 4,
    "trimTrailingWhitespace": true,
    "endOfLine": "\n",
    "encoding": "utf-8"
}

Rust API

This library implements serde's Deserializer.

Synopsis

From a file:

use serde::{Deserialize, Serialize};

use tiscript::from_file;

// integrated to Serde
#[derive(Serialize, Deserialize, Debug, PartialEq)]
struct EditorConfig {
    tabSize: i32,
    trimTrailingWhitespace: bool,
    endOfLine: String,
    encoding: String,
}

fn main() {
    let editorConfig: EditorConfig = from_file("./editor_config.ts").unwrap();
    // or from_file_with_timeout(f, d) for untrusted code

    println!("{:?}", editorConfig);
}

From an inline code:

use serde::{Deserialize, Serialize};

use tiscript::from_str;

// integrated to Serde
#[derive(Serialize, Deserialize, Debug, PartialEq)]
struct EditorConfig {
    tabSize: i32,
    trimTrailingWhitespace: bool,
    endOfLine: String,
    encoding: String,
}

fn main() {
    let editorConfig: EditorConfig = from_str(r#"
        const LF = "\x0A";

        export const tabSize = 4;
        export const trimTrailingWhitespace = true;
        export const endOfLine = LF;
        export const encoding = "utf-8";
    "#).unwrap();
    // or from_str_with_timeout(f, d) for untrusted code

println!("{:?}", editorConfig);
}

Description

TBD

Features

This is a list of features in ECMA-262 that are planned or implemented ("[x]" does not necessarily mean it's 100% compatible with TypeScript and ECMA-262):

  • shebang
  • line and block comments
  • export
  • export default
  • let
  • const
  • if and else
  • undefined literals
  • null literals
  • boolean literals
  • number literals
  • string literals
  • template string literals
  • tagged template string literals
  • bigint literals (actually 64-bit int)
  • array literals
  • object literals
  • index access ([0] and .["foo"])
  • property access (.foo)
  • typeof operator
  • arithmetic operators (+, -, *, /, %, **)
  • bitwise operators (~, &, |, ^, <<, >>, >>>)
  • assignment operators (=, +=, -=, *=, /=, %=, **=, <<=, >>=, >>>=, &=, |=, ^=)
  • comparison operators (==, !=, ===, !==, <, >, <=, >=)
  • increment and decrement operators (++, --)
  • ternary operator (cond ? t : f)
  • logical operators (&&, ||, !)
  • nullish coalescing operator (??)
  • null-conditional operator (?.)
  • object spread syntax
  • array spread syntax
  • class statement
  • for-of loop
  • C-style for (with restrictions)
  • while loop (with restrictions)
  • do-while loop (with restrictions)
  • exceptions (Error, try-catch-finally, throw and so on)
  • temporal module
  • function declaration
  • arrow function
  • function call
  • method call
  • function declaration with function keyword
  • function as a first-class object
  • generator function (function*)
  • limited recursive calls of functions
  • optional semicolons (ASI)
  • static import
  • dynamic import
  • Math class methods
  • Math class properties
  • String class methods
  • String instance methods
  • Number class methods
  • Number instance methods
  • TextEncoder
  • Intl / ECMA-402
  • atob and btoa

This is a list of features in TypeScript that are planned or implemented:

  • import type statement (but it does nothing so far)
  • any
  • unknown
  • never
  • as type assertion
  • satisfies type operator
  • primitive type annotations
  • literal type annotations
  • union type annotations
  • intersection type annotations
  • tuple type annotations
  • array type annotations
  • object type annotations
  • type guards
  • interface type statement
  • type type statement
  • typeof operator in type expressions
  • generics
  • null-assertion operator (trailing !)

This is a list of features that won't be implemented:

  • var declaration
  • eval function
  • new Function()
  • RegExp and regular expression operators
  • Most of runtime (e.g. typed arrays)
  • for-in loop
  • async and await
  • symbol
  • true bigint
  • decorators (just because the spec is too large)
  • enum
  • const enum
  • namespace
  • commonjs features
  • no strict features
  • unlimited recursion / loop
  • anything that meets Turing completeness

Note that any features TiScript recognizes, but TypeScript compiler does not are invalid, but not vice versa. This is because TiScript is a strict subset of TypeScript.

Development

If you'd like to develop this project, run UPDATE=1 cargo test to automatically generates *.stdout or *.stderr files in spec/.

WebAssembly

This project is ensured to be built with --target=wasm32-wasi in CI. There's no test for WebAssembly though.

Similar Works

Authors

FUJI, Goro (gfx).

This project a fork of https://github.com/msakuta/ruscal, and thus much of the code comes from it.

License

This project is licensed under the ISC License - see the LICENSE file for details.

Dependencies

~2–2.8MB
~52K SLoC