This commit is contained in:
parent
abad00c0ed
commit
1f977d5913
|
@ -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]
|
||||||
|
|
||||||
|
|
|
@ -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"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
|
@ -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() {
|
||||||
|
|
|
@ -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());
|
||||||
|
|
Loading…
Reference in a new issue