Skip to content

Commit

Permalink
feat: graphql lexer (#2271)
Browse files Browse the repository at this point in the history
  • Loading branch information
vohoanglong0107 authored Apr 5, 2024
1 parent b42990f commit 2b19194
Show file tree
Hide file tree
Showing 25 changed files with 2,259 additions and 144 deletions.
19 changes: 19 additions & 0 deletions Cargo.lock

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

39 changes: 31 additions & 8 deletions crates/biome_graphql_factory/src/generated/node_factory.rs

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

54 changes: 34 additions & 20 deletions crates/biome_graphql_factory/src/generated/syntax_factory.rs

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

32 changes: 32 additions & 0 deletions crates/biome_graphql_parser/Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
[package]
authors.workspace = true
categories.workspace = true
edition.workspace = true
homepage.workspace = true
keywords.workspace = true
license.workspace = true
name = "biome_graphql_parser"
repository.workspace = true
version = "0.1.0"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
biome_console = { workspace = true }
biome_diagnostics = { workspace = true }
biome_graphql_factory = { workspace = true }
biome_graphql_syntax = { workspace = true }
biome_parser = { workspace = true }
biome_rowan = { workspace = true }
biome_unicode_table = { workspace = true }
tracing = { workspace = true }
unicode-bom = { workspace = true }

[dev-dependencies]
insta = { workspace = true }
quickcheck = { workspace = true }
quickcheck_macros = { workspace = true }
tests_macros = { workspace = true }

[lints]
workspace = true
Loading

0 comments on commit 2b19194

Please sign in to comment.