package lua_parser

  1. Overview
  2. Docs

Source file pp_ast.ml

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
(*
 The MIT License                                                                                                                                 
                                                                                                                                                 
 Copyright (c) 2020 Jason D. Nielsen <drjdnielsen@gmail.com>
 *)

open Ast
open Sexp_pretty

let pp_ast_sexp ast =
  print_endline (sexp_to_string (sexp_of_ast ast))
(** Print AST as an S-expression. *)

let pp_ast_show ast = print_endline (show_ast ast)
(** Print AST in JSON *)
OCaml

Innovation. Community. Security.