30 lines
944 B
TypeScript
30 lines
944 B
TypeScript
//import * as babelparser from "../babel/packages/babel-parser";
|
|
import * as babelparser from "@babel/parser";
|
|
//import core from "../babel/packages/babel-core";
|
|
import { parse_with_plugins } from "./parser/parse";
|
|
import {
|
|
SelfHostedRecipe,
|
|
TransformRecipe,
|
|
transform,
|
|
} from "./transform/transform";
|
|
|
|
import { parseJSTQL } from "./langium/langiumRunner";
|
|
const path = "test_files/test.js";
|
|
const file = Bun.file(path);
|
|
const codeFromFile = await file.text();
|
|
const main = async () => {
|
|
//transform(selfHostedTransformExampleMultiStmt, codeFromFile);
|
|
|
|
const jstql_file =
|
|
"/home/rolfmg/Coding/Master/didactic-chainsaw/dsl_files/pipeline.jstql";
|
|
const test_file = Bun.file(jstql_file);
|
|
const test_JSTQL = await test_file.text();
|
|
let proposals = await parseJSTQL(test_JSTQL);
|
|
|
|
await Bun.write(
|
|
"output_files/output.js",
|
|
transform(proposals[0].pairs[0], codeFromFile)
|
|
);
|
|
};
|
|
|
|
main();
|