aboutsummaryrefslogtreecommitdiffstats
path: root/plugin_derive/src/lib.rs
diff options
context:
space:
mode:
Diffstat (limited to 'plugin_derive/src/lib.rs')
-rw-r--r--plugin_derive/src/lib.rs27
1 files changed, 0 insertions, 27 deletions
diff --git a/plugin_derive/src/lib.rs b/plugin_derive/src/lib.rs
deleted file mode 100644
index 704d6ef..0000000
--- a/plugin_derive/src/lib.rs
+++ /dev/null
@@ -1,27 +0,0 @@
-
-//! Provides the plugin derive macro
-
-extern crate proc_macro;
-extern crate syn;
-#[macro_use]
-extern crate quote;
-
-use proc_macro::TokenStream;
-
-#[proc_macro_derive(PluginName)]
-pub fn derive_plugin(data: TokenStream) -> TokenStream {
- let ast = syn::parse_derive_input(&data.to_string()).unwrap();
- let gen = expand_plugin(&ast);
- gen.parse().unwrap()
-}
-
-fn expand_plugin(ast: &syn::DeriveInput) -> quote::Tokens {
- let name = &ast.ident;
- quote! {
- impl PluginName for #name {
- fn name(&self) -> &str {
- stringify!(#name)
- }
- }
- }
-}