[−][src]Trait binjs::source::SourceParser
A source that can parse files to ASTs.
Associated Types
Loading content...Required methods
fn parse_str(&self, source: &str) -> Result<AST, Self::Error>
Parse a string.
fn parse_file<P: AsRef<Path>>(&self, path: P) -> Result<AST, Self::Error>
Parse a file.