Clippy and clippy action
Some checks failed
/ build (push) Has been cancelled

This commit is contained in:
xqtc161 2024-07-12 02:07:39 +02:00
parent abad00c0ed
commit 1f977d5913
4 changed files with 28 additions and 5 deletions

View file

@ -23,3 +23,26 @@ jobs:
run: | run: |
cargo test --lib cargo test --lib
shell: bash shell: bash
clippy:
runso-on: ubuntu-latest
steps:
- id: checkout
name: checkout
uses: actions/checkout@v4
- id: setup-rust
name: setup rust
uses: https://github.com/ningenMe/setup-rustup@v1.1.0
with:
rust-version: nightly
- id: cargo-clippy
name: cargo clippy
run: |
cargo clippy --fix --lib -p glsl-lexer
shell: bash
- id: commit
name: commit
uses: https://github.com/EndBug/add-and-commit@v9
with:
author_name: [Clippy]

View file

@ -81,11 +81,11 @@
"locked": { "locked": {
"lastModified": 1, "lastModified": 1,
"narHash": "sha256-8wkkYGr1dPSnX9oVMX8D6dTOROXKOYpBTKfriA0sEBI=", "narHash": "sha256-8wkkYGr1dPSnX9oVMX8D6dTOROXKOYpBTKfriA0sEBI=",
"path": "/nix/store/m9vjlwhzw1n4lgswgx8zh6ninlvghkdh-source/flake.systems.nix", "path": "/nix/store/wdwf2qq1sqhs0nig8rffrq5dbpwr27v6-source/flake.systems.nix",
"type": "path" "type": "path"
}, },
"original": { "original": {
"path": "/nix/store/m9vjlwhzw1n4lgswgx8zh6ninlvghkdh-source/flake.systems.nix", "path": "/nix/store/wdwf2qq1sqhs0nig8rffrq5dbpwr27v6-source/flake.systems.nix",
"type": "path" "type": "path"
} }
}, },

View file

@ -37,10 +37,10 @@ impl crate::Lexer {
let mut is_swizzle = false; let mut is_swizzle = false;
while let Some(c) = self.current_char { while let Some(c) = self.current_char {
if c.is_digit(10) { if c.is_ascii_digit() {
number.push(c); number.push(c);
self.advance(); self.advance();
} else if c == '.' && self.peek().map_or(false, |c| c.is_digit(10)) } else if c == '.' && self.peek().map_or(false, |c| c.is_ascii_digit())
|| self.peek() == Some('f') || self.peek() == Some('f')
{ {
if number.is_empty() { if number.is_empty() {

View file

@ -105,7 +105,7 @@ impl Lexer {
tokens.push(Token::Whitespace); tokens.push(Token::Whitespace);
} else if c.is_alphabetic() || c == '_' { } else if c.is_alphabetic() || c == '_' {
tokens.push(self.consume_identifier_or_keyword()); tokens.push(self.consume_identifier_or_keyword());
} else if c.is_digit(10) { } else if c.is_ascii_digit() {
tokens.push(self.consume_number()); tokens.push(self.consume_number());
} else if c == '/' && self.peek() == Some('/') { } else if c == '/' && self.peek() == Some('/') {
tokens.push(self.consume_comment()); tokens.push(self.consume_comment());