Fix some warnings in codegen + tests.

This commit is contained in:
theduke 2017-08-03 04:03:48 +02:00 committed by theduke
parent 6c7dc0493d
commit 6c45fba9bd
4 changed files with 5 additions and 5 deletions

View file

@ -151,7 +151,7 @@ pub fn impl_object(ast: &syn::DeriveInput) -> Tokens {
Some(#name)
}
fn concrete_type_name(&self, context: &Self::Context) -> String {
fn concrete_type_name(&self, _: &Self::Context) -> String {
#name.to_string()
}
@ -164,7 +164,7 @@ pub fn impl_object(ast: &syn::DeriveInput) -> Tokens {
builder.into_meta()
}
fn resolve_field(&self, field_name: &str, args: &::juniper::Arguments, executor: &::juniper::Executor<Self::Context>)
fn resolve_field(&self, field_name: &str, _: &::juniper::Arguments, executor: &::juniper::Executor<Self::Context>)
-> ::juniper::ExecutionResult
{

View file

@ -1,4 +1,4 @@
use juniper::{self, InputValue, ToInputValue, GraphQLType, FromInputValue};
use juniper::{ToInputValue, GraphQLType, FromInputValue};
#[derive(GraphQLInputObject, Debug, PartialEq)]
#[graphql(name="MyInput")]

View file

@ -1,4 +1,4 @@
use juniper::{self, execute, GraphQLType, Value, Variables, EmptyMutation, RootNode};
use juniper::{execute, GraphQLType, Value, Variables, EmptyMutation, RootNode};
#[derive(GraphQLObject, Debug, PartialEq)]
#[graphql(name="MyObj", description="obj descr")]

View file

@ -1,5 +1,5 @@
#[macro_use] extern crate juniper;
#[macro_use] extern crate juniper_codegen;
#[macro_use] extern crate serde_json;
extern crate serde_json;
mod codegen;