diff --git a/macros/src/check.rs b/macros/src/check.rs index b8e6edd8b8..1dac363f21 100644 --- a/macros/src/check.rs +++ b/macros/src/check.rs @@ -1,14 +1,13 @@ use std::collections::HashMap; -use quote::Tokens; -use syn::Ident; +use syn::{Ident, Path}; use syntax::check::{self, Idle, Init}; use syntax::{self, Idents, Statics}; use syntax::error::*; pub struct App { - pub device: Tokens, + pub device: Path, pub idle: Idle, pub init: Init, pub resources: Statics,