switch to dynamic dispatch for TokenSource

Benchmarks show no difference. This is probably because we are
bottlenecked on memory allocations, and we should fix that, but we are
not optimizing for performance just yet.

changes. Lines starting # with '#' will be ignored, and an empty
message aborts the commit. # # On branch token-source # Changes to be
committed: # modified: crates/ra_syntax/src/parsing/parser_api.rs #
modified: crates/ra_syntax/src/parsing/parser_impl.rs #
This commit is contained in:
Aleksey Kladov 2019-02-20 22:02:03 +03:00
parent 0c81b9deee
commit d2bce118ae
2 changed files with 7 additions and 9 deletions

View file

@ -4,7 +4,7 @@ use crate::{
SyntaxKind::{self, ERROR},
parsing::{
token_set::TokenSet,
parser_impl::ParserImpl
parser_impl::ParserImpl,
},
};
@ -17,9 +17,7 @@ use crate::{
/// tree, but rather a flat stream of events of the form
/// "start expression, consume number literal,
/// finish expression". See `Event` docs for more.
pub(crate) struct Parser<'t>(
pub(super) ParserImpl<crate::parsing::parser_impl::input::ParserInput<'t>>,
);
pub(crate) struct Parser<'t>(pub(super) ParserImpl<'t>);
impl<'t> Parser<'t> {
/// Returns the kind of the current token.