-
Notifications
You must be signed in to change notification settings - Fork 548
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Add csharp stuff and merge after the rewrite * Add csharp, boilerplate + minimal execution * Add initial parser * Frontend + wasm export of the tree sitter parser * Arg spread and use cache * More types and req parsing * Add logo * Parse async and void to fit the wrapper to the main sig * Csharp editor resource and var buttons * Lockfile generation * Add default parsing using serde_json::from_str * Update init code for c# * Nsjail for c# * Remove c_variadic feature * Remove unused imports * Add c_variadic only for wasm32 assembly * Fix c# test * Add dotnet to the images * Update dockerfiles * Update dockerfile again * Touch Dockerfile * npm install c# parser * Add opt mount in nsjail * Update ee repo ref * Add csharp to backend image for tests * Add setting to set nuget package * Windows compatibility * Disable csharp test * ADd feature flag
- Loading branch information
Showing
67 changed files
with
1,678 additions
and
122 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
dddc8d60d483a2ce8d78233a25a3899a2b1224ca | ||
dddc8d60d483a2ce8d78233a25a3899a2b1224ca |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
-- Add down migration script here |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
-- Add up migration script here | ||
ALTER TYPE SCRIPT_LANG ADD VALUE IF NOT EXISTS 'csharp'; | ||
UPDATE config set config = jsonb_set(config, '{worker_tags}', config->'worker_tags' || '["csharp"]'::jsonb) where name = 'worker__default' and config @> '{"worker_tags": ["deno", "python3", "go", "bash", "powershell", "dependency", "flow", "hub", "other", "bun", "php", "rust", "ansible"]}'::jsonb AND NOT config->'worker_tags' @> '"csharp"'::jsonb; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
[package] | ||
name = "windmill-parser-csharp" | ||
version.workspace = true | ||
edition.workspace = true | ||
authors.workspace = true | ||
|
||
[lib] | ||
name = "windmill_parser_csharp" | ||
path = "./src/lib.rs" | ||
|
||
[dependencies] | ||
windmill-parser.workspace = true | ||
tree-sitter.workspace = true | ||
tree-sitter-c-sharp.workspace = true | ||
anyhow.workspace = true | ||
wasm-bindgen.workspace = true | ||
serde_json.workspace = true | ||
# convert_case.workspace = true | ||
# lazy_static.workspace = true | ||
# regex.workspace = true | ||
|
Oops, something went wrong.