From 40ea35cbe7482ce04096c4d63a848c8601cc1848 Mon Sep 17 00:00:00 2001 From: Laurenz Date: Mon, 3 Feb 2020 10:37:50 +0100 Subject: =?UTF-8?q?Upgrade=20to=20new=20toddle=20interface=20=F0=9F=90=B3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/syntax/mod.rs | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) (limited to 'src/syntax/mod.rs') diff --git a/src/syntax/mod.rs b/src/syntax/mod.rs index 4430f6e8..9d83e546 100644 --- a/src/syntax/mod.rs +++ b/src/syntax/mod.rs @@ -23,7 +23,10 @@ pub_use_mod!(tokens); pub trait Model: Debug + ModelBounds { /// Layout the model into a sequence of commands processed by a /// [`ModelLayouter`](crate::layout::ModelLayouter). - async fn layout<'a>(&'a self, ctx: LayoutContext<'_, '_>) -> Layouted>; + async fn layout<'a>( + &'a self, + ctx: LayoutContext<'_>, + ) -> Layouted>; } /// A tree representation of source code. @@ -47,7 +50,10 @@ impl SyntaxModel { #[async_trait(?Send)] impl Model for SyntaxModel { - async fn layout<'a>(&'a self, _: LayoutContext<'_, '_>) -> Layouted> { + async fn layout<'a>( + &'a self, + _: LayoutContext<'_>, + ) -> Layouted> { Layouted { output: vec![Command::LayoutSyntaxModel(self)], errors: vec![], -- cgit v1.2.3