Skip to main content

normalize_surface_syntax/input/
mod.rs

1//! Input readers - parse source code into IR.
2
3#[cfg(feature = "read-typescript")]
4pub mod typescript;
5
6#[cfg(feature = "read-typescript")]
7pub use typescript::{TYPESCRIPT_READER, TypeScriptReader, read_typescript};
8
9#[cfg(feature = "read-lua")]
10pub mod lua;
11
12#[cfg(feature = "read-lua")]
13pub use lua::{LUA_READER, LuaReader, read_lua};
14
15#[cfg(feature = "read-python")]
16pub mod python;
17
18#[cfg(feature = "read-python")]
19pub use python::{PYTHON_READER, PythonReader, read_python};