blob: 73f03f9ade823996ff742a0fb065c7d7676a7001 (
plain) (
blame)
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
|
const std = @import("std");
const lex = @import("js_lexer.zig");
const logger = @import("logger.zig");
const alloc = @import("alloc.zig");
const options = @import("options.zig");
const js_parser = @import("js_parser.zig");
pub fn main() anyerror!void {
try alloc.setup(std.heap.page_allocator);
// const args = try std.process.argsAlloc(alloc.dynamic);
// // const stdout = std.io.getStdOut();
// // const stderr = std.io.getStdErr();
// // if (args.len < 1) {
// // const len = stderr.write("Pass a file");
// // return;
// // }
// // alloc
const entryPointName = "/var/foo/index.js";
const code = "for (let i = 0; i < 100; i++) { console.log('hi') aposkdpoaskdpokasdpokasdpokasdpokasdpoaksdpoaksdpoaskdpoaksdpoaksdpoaskdpoaskdpoasdk; ";
var parser = try js_parser.Parser.init(try options.TransformOptions.initUncached(alloc.dynamic, entryPointName, code), alloc.dynamic);
var res = try parser.parse();
std.debug.print("{s}", .{res});
}
|