Re-export DefineText

This commit is contained in:
dalance 2019-11-12 20:01:08 +09:00
parent 44c8717a14
commit f3da223bec
2 changed files with 3 additions and 1 deletions

View File

@ -2,6 +2,8 @@
## [Unreleased](https://github.com/dalance/sv-parser/compare/v0.4.1...Unreleased) - ReleaseDate ## [Unreleased](https://github.com/dalance/sv-parser/compare/v0.4.1...Unreleased) - ReleaseDate
* [Added] re-export DefineText
## [v0.4.1](https://github.com/dalance/sv-parser/compare/v0.4.0...v0.4.1) - 2019-11-12 ## [v0.4.1](https://github.com/dalance/sv-parser/compare/v0.4.0...v0.4.1) - 2019-11-12
## [v0.4.0](https://github.com/dalance/sv-parser/compare/v0.3.7...v0.4.0) - 2019-11-12 ## [v0.4.0](https://github.com/dalance/sv-parser/compare/v0.3.7...v0.4.0) - 2019-11-12

View File

@ -7,7 +7,7 @@ use std::fmt;
use std::path::{Path, PathBuf}; use std::path::{Path, PathBuf};
pub use sv_parser_error::{Error, ErrorKind}; pub use sv_parser_error::{Error, ErrorKind};
use sv_parser_parser::{lib_parser, sv_parser, Span, SpanInfo}; use sv_parser_parser::{lib_parser, sv_parser, Span, SpanInfo};
pub use sv_parser_pp::preprocess::{preprocess, Define, Defines, PreprocessedText}; pub use sv_parser_pp::preprocess::{preprocess, Define, DefineText, Defines, PreprocessedText};
pub use sv_parser_syntaxtree::*; pub use sv_parser_syntaxtree::*;
pub struct SyntaxTree { pub struct SyntaxTree {