-
-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
V0.3.0 #64
Conversation
Review or Edit in CodeSandboxOpen the branch in Web Editor • VS Code • Insiders |
Signed-off-by: Joe McCain III <92560746+FL03@users.noreply.github.com>
} | ||
} | ||
|
||
handle_block(&block, &var) |
Check warning
Code scanning / clippy
this expression creates a reference which is immediately dereferenced by the compiler Warning
} | ||
} | ||
|
||
handle_block(&block, &var) |
Check warning
Code scanning / clippy
this expression creates a reference which is immediately dereferenced by the compiler Warning
|
||
let grad = vars | ||
.iter() | ||
.map(|var| handle_block(&block, &var)) |
Check warning
Code scanning / clippy
this expression creates a reference which is immediately dereferenced by the compiler Warning
|
||
let grad = vars | ||
.iter() | ||
.map(|var| handle_block(&block, &var)) |
Check warning
Code scanning / clippy
this expression creates a reference which is immediately dereferenced by the compiler Warning
pub fn gradient(grad: &GradientAst) -> TokenStream { | ||
let GradientAst { attrs, item } = grad; | ||
let _attrs = attrs; | ||
let item = item; |
Check failure
Code scanning / clippy
redundant redefinition of a binding item Error
let GradientAst { attrs, item } = grad; | ||
let _attrs = attrs; | ||
let item = item; | ||
handle_item_fn(&item) |
Check warning
Code scanning / clippy
this expression creates a reference which is immediately dereferenced by the compiler Warning
|
||
let grad = vars | ||
.iter() | ||
.map(|var| handle_block(&block, &var)) |
Check warning
Code scanning / clippy
this expression creates a reference which is immediately dereferenced by the compiler Warning
|
||
let grad = vars | ||
.iter() | ||
.map(|var| handle_block(&block, &var)) |
Check warning
Code scanning / clippy
this expression creates a reference which is immediately dereferenced by the compiler Warning
No description provided.