Skip to content

Commit

Permalink
Remove unnecessary workflow files
Browse files Browse the repository at this point in the history
  • Loading branch information
OchirErkhembayar committed Nov 17, 2023
1 parent 597afe4 commit ec7d87f
Show file tree
Hide file tree
Showing 4 changed files with 2 additions and 116 deletions.
30 changes: 0 additions & 30 deletions .github/workflows/nostd.yml

This file was deleted.

84 changes: 0 additions & 84 deletions .github/workflows/safety.yml

This file was deleted.

2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion src/indexing/parser.rs
Original file line number Diff line number Diff line change
Expand Up @@ -571,7 +571,7 @@ impl Parser {
let token = self.next_token();
if token.token_type != TokenType::Identifier {
// hack to get over things like $this->match()
if vec![TokenType::ColonColon, TokenType::ThinArrow].contains(&token.token_type) {
if [TokenType::ColonColon, TokenType::ThinArrow].contains(&token.token_type) {
self.next_token();
self.next_token();
self.next_token();
Expand Down

0 comments on commit ec7d87f

Please sign in to comment.