Skip to content

Advance dependency body when symbol has been processed #140

Advance dependency body when symbol has been processed

Advance dependency body when symbol has been processed #140

Triggered via push September 13, 2023 09:17
Status Success
Total duration 1m 41s
Billable time 7m
Artifacts

ci.yml

on: push
Matrix: test
Fit to window
Zoom out
Zoom in

Annotations

23 warnings
field `len` is never read: pango-lexer/src/main.rs#L8
warning: field `len` is never read --> pango-lexer/src/main.rs:8:9 | 8 | D { len: usize }, | - ^^^ | | | field in this variant | = note: `#[warn(dead_code)]` on by default
usage of `Iterator::fold` on a type that implements `Try`: pango-lexer/src/regex/tokenizer.rs#L377
warning: usage of `Iterator::fold` on a type that implements `Try` --> pango-lexer/src/regex/tokenizer.rs:377:14 | 377 | .fold(Some((digit_count, start)), |acc, d| { | ______________^ 378 | | acc.map(|(digit_count, n)| (digit_count + 1, (n << 4) + d)) 379 | | }) | |______________^ help: use `try_fold` instead: `try_fold((digit_count, start), |acc, d| ...)` | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#manual_try_fold = note: `#[warn(clippy::manual_try_fold)]` on by default
methods `first`, `first_body`, `first_bodies`, and `follow_set` are never used: src/grammar.rs#L90
warning: methods `first`, `first_body`, `first_bodies`, and `follow_set` are never used --> src/grammar.rs:90:8 | 85 | impl<V, T> Grammar<V, T> | ------------------------ methods in this implementation ... 90 | fn first(&self, variable: V) -> HashSet<&Symbol<V, T>> { | ^^^^^ ... 98 | fn first_body<'a, B>(&'a self, variable: Option<V>, body: B) -> HashSet<&'a Symbol<V, T>> | ^^^^^^^^^^ ... 106 | fn first_bodies<'a, Bs, B>( | ^^^^^^^^^^^^ ... 274 | pub(super) fn follow_set(&self) -> HashMap<V, HashSet<&Symbol<V, T>>> { | ^^^^^^^^^^
method `iter_terminals` is never used: src/grammar.rs#L39
warning: method `iter_terminals` is never used --> src/grammar.rs:39:19 | 35 | impl<V, T> Grammar<V, T> | ------------------------ method in this implementation ... 39 | pub(crate) fn iter_terminals(&self) -> impl Iterator<Item = &T> { | ^^^^^^^^^^^^^^
method `iter_variables` is never used: src/grammar.rs#L30
warning: method `iter_variables` is never used --> src/grammar.rs:30:19 | 24 | impl<V, T> Grammar<V, T> { | ------------------------ method in this implementation ... 30 | pub(crate) fn iter_variables(&self) -> impl Iterator<Item = &V> { | ^^^^^^^^^^^^^^
method `get_cursor_terminal` is never used: src/cfsm/item.rs#L53
warning: method `get_cursor_terminal` is never used --> src/cfsm/item.rs:53:19 | 28 | impl<V, T> ItemBody<V, T> { | ------------------------- method in this implementation ... 53 | pub(super) fn get_cursor_terminal(&self) -> Option<&T> { | ^^^^^^^^^^^^^^^^^^^ | = note: `#[warn(dead_code)]` on by default
methods `with_transition` and `get_state` are never used: pango-lexer/src/fsm/nfa/model.rs#L219
warning: methods `with_transition` and `get_state` are never used --> pango-lexer/src/fsm/nfa/model.rs:219:19 | 160 | impl NfaBuilder { | --------------- methods in this implementation ... 219 | pub(super) fn with_transition(mut self, start: StateId, end: StateId, input: Input) -> Self { | ^^^^^^^^^^^^^^^ ... 268 | pub(super) fn get_state(&self, state_id: StateId) -> &State { | ^^^^^^^^^ | = note: `#[warn(dead_code)]` on by default
unused variable: `state_counters`: pango-lexer/src/fsm/nfa/sim.rs#L184
warning: unused variable: `state_counters` --> pango-lexer/src/fsm/nfa/sim.rs:184:13 | 184 | state_counters, | ^^^^^^^^^^^^^^ help: try ignoring the field: `state_counters: _` | = note: `#[warn(unused_variables)]` on by default
unused import: `ast::Ast`: pango-lexer/src/regex/mod.rs#L1
warning: unused import: `ast::Ast` --> pango-lexer/src/regex/mod.rs:1:23 | 1 | pub(crate) use self::{ast::Ast, parser::Parser}; | ^^^^^^^^
unnecessary `pub(self)`: pango-lexer/src/fsm/nfa/mod.rs#L6
warning: unnecessary `pub(self)` --> pango-lexer/src/fsm/nfa/mod.rs:6:1 | 6 | pub(self) use super::StateId; | ^^^^^^^^^ help: remove it | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_pub_self = note: `#[warn(clippy::needless_pub_self)]` on by default
unused import: `sim::NfaSimulator`: pango-lexer/src/fsm/mod.rs#L2
warning: unused import: `sim::NfaSimulator` --> pango-lexer/src/fsm/mod.rs:2:58 | 2 | nfa::{compiler::Compiler as NfaCompiler, model::Nfa, sim::NfaSimulator}, | ^^^^^^^^^^^^^^^^^ | = note: `#[warn(unused_imports)]` on by default
clippy
The following actions uses node12 which is deprecated and will be forced to run on node16: actions-rs/clippy-check@v1. For more info: https://github.blog/changelog/2023-06-13-github-actions-all-actions-will-run-on-node16-instead-of-node12-by-default/
field `len` is never read: pango-lexer/src/main.rs#L8
warning: field `len` is never read --> pango-lexer/src/main.rs:8:9 | 8 | D { len: usize }, | - ^^^ | | | field in this variant | = note: `#[warn(dead_code)]` on by default
usage of `Iterator::fold` on a type that implements `Try`: pango-lexer/src/regex/tokenizer.rs#L377
warning: usage of `Iterator::fold` on a type that implements `Try` --> pango-lexer/src/regex/tokenizer.rs:377:14 | 377 | .fold(Some((digit_count, start)), |acc, d| { | ______________^ 378 | | acc.map(|(digit_count, n)| (digit_count + 1, (n << 4) + d)) 379 | | }) | |______________^ help: use `try_fold` instead: `try_fold((digit_count, start), |acc, d| ...)` | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#manual_try_fold = note: `#[warn(clippy::manual_try_fold)]` on by default
methods `with_transition` and `get_state` are never used: pango-lexer/src/fsm/nfa/model.rs#L219
warning: methods `with_transition` and `get_state` are never used --> pango-lexer/src/fsm/nfa/model.rs:219:19 | 160 | impl NfaBuilder { | --------------- methods in this implementation ... 219 | pub(super) fn with_transition(mut self, start: StateId, end: StateId, input: Input) -> Self { | ^^^^^^^^^^^^^^^ ... 268 | pub(super) fn get_state(&self, state_id: StateId) -> &State { | ^^^^^^^^^ | = note: `#[warn(dead_code)]` on by default
methods `first`, `first_body`, `first_bodies`, and `follow_set` are never used: src/grammar.rs#L90
warning: methods `first`, `first_body`, `first_bodies`, and `follow_set` are never used --> src/grammar.rs:90:8 | 85 | impl<V, T> Grammar<V, T> | ------------------------ methods in this implementation ... 90 | fn first(&self, variable: V) -> HashSet<&Symbol<V, T>> { | ^^^^^ ... 98 | fn first_body<'a, B>(&'a self, variable: Option<V>, body: B) -> HashSet<&'a Symbol<V, T>> | ^^^^^^^^^^ ... 106 | fn first_bodies<'a, Bs, B>( | ^^^^^^^^^^^^ ... 274 | pub(super) fn follow_set(&self) -> HashMap<V, HashSet<&Symbol<V, T>>> { | ^^^^^^^^^^
method `iter_terminals` is never used: src/grammar.rs#L39
warning: method `iter_terminals` is never used --> src/grammar.rs:39:19 | 35 | impl<V, T> Grammar<V, T> | ------------------------ method in this implementation ... 39 | pub(crate) fn iter_terminals(&self) -> impl Iterator<Item = &T> { | ^^^^^^^^^^^^^^
method `iter_variables` is never used: src/grammar.rs#L30
warning: method `iter_variables` is never used --> src/grammar.rs:30:19 | 24 | impl<V, T> Grammar<V, T> { | ------------------------ method in this implementation ... 30 | pub(crate) fn iter_variables(&self) -> impl Iterator<Item = &V> { | ^^^^^^^^^^^^^^
method `get_cursor_terminal` is never used: src/cfsm/item.rs#L53
warning: method `get_cursor_terminal` is never used --> src/cfsm/item.rs:53:19 | 28 | impl<V, T> ItemBody<V, T> { | ------------------------- method in this implementation ... 53 | pub(super) fn get_cursor_terminal(&self) -> Option<&T> { | ^^^^^^^^^^^^^^^^^^^ | = note: `#[warn(dead_code)]` on by default
unused variable: `state_counters`: pango-lexer/src/fsm/nfa/sim.rs#L184
warning: unused variable: `state_counters` --> pango-lexer/src/fsm/nfa/sim.rs:184:13 | 184 | state_counters, | ^^^^^^^^^^^^^^ help: try ignoring the field: `state_counters: _` | = note: `#[warn(unused_variables)]` on by default
unused import: `ast::Ast`: pango-lexer/src/regex/mod.rs#L1
warning: unused import: `ast::Ast` --> pango-lexer/src/regex/mod.rs:1:23 | 1 | pub(crate) use self::{ast::Ast, parser::Parser}; | ^^^^^^^^
unnecessary `pub(self)`: pango-lexer/src/fsm/nfa/mod.rs#L6
warning: unnecessary `pub(self)` --> pango-lexer/src/fsm/nfa/mod.rs:6:1 | 6 | pub(self) use super::StateId; | ^^^^^^^^^ help: remove it | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_pub_self = note: `#[warn(clippy::needless_pub_self)]` on by default
unused import: `sim::NfaSimulator`: pango-lexer/src/fsm/mod.rs#L2
warning: unused import: `sim::NfaSimulator` --> pango-lexer/src/fsm/mod.rs:2:58 | 2 | nfa::{compiler::Compiler as NfaCompiler, model::Nfa, sim::NfaSimulator}, | ^^^^^^^^^^^^^^^^^ | = note: `#[warn(unused_imports)]` on by default