Skip to content

Commit

Permalink
Fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
Cypher1 committed Apr 14, 2024
1 parent a6760f2 commit f2e3c63
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions takolib/src/parser/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,10 @@ use tokens::{assign_op, binding_mode_operation, is_assign, OpBinding, Symbol, To
use lazy_static::lazy_static;

lazy_static! {
pub static ref KEYWORDS: Vec<String> = include_str!("keywords.txt").split("\n").map(|s| s.to_string()).collect();

pub static ref KEYWORDS: Vec<String> = include_str!("keywords.txt")
.split("\n")
.map(|s| s.to_string())
.collect();
}

#[derive(Debug, Error, PartialEq, Eq, Ord, PartialOrd, Clone, Hash)]
Expand Down

0 comments on commit f2e3c63

Please sign in to comment.