This repository was archived by the owner on Apr 3, 2026. It is now read-only.
CEL#8522
Open
stefanvanburen wants to merge 1 commit into
Open
Conversation
https://cel.dev `.cel` (supported on nvim nightly: neovim/neovim#37834) CEL is an expression-based language that's embeddable, so sorry for the short example. (Many more on https://celbyexample.com.) <details> <summary>Representative code sample</summary> ``` // From cel.dev homepage // Simple predicates 'tacocat'.startsWith('taco') ``` </details> https://github.com/bufbuild/tree-sitter-cel <details> <summary>Parsed tree for code sample</summary> ``` (expr ; [0, 0] - [3, 0] (comment) ; [0, 0] - [0, 24] (comment) ; [1, 0] - [1, 20] (member_call_expression ; [2, 0] - [2, 28] operand: (string_literal ; [2, 0] - [2, 9] (single_quoted_string_literal)) ; [2, 0] - [2, 9] function: (identifier) ; [2, 10] - [2, 20] arguments: (arguments ; [2, 20] - [2, 28] (string_literal ; [2, 21] - [2, 27] (single_quoted_string_literal))))) ; [2, 21] - [2, 27] ``` </details> Source of queries: written from scratch; cobbled together from other tree-sitter repositories. <details> <summary>Screenshots of code sample</summary> <!-- paste screenshot of code sample using provided queries here --> </details> <!-- CHECKLIST: _Before_ submitting, make sure * `./scripts/install-parsers.lua <language>` works without warnings * `./scripts/install-parsers.lua --generate <language>` works without warnings * `make query` works without warning * `make docs` is run -->
This file contains hidden or 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
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
https://cel.dev
.cel(supported on nvim nightly: neovim/neovim#37834)CEL is an expression-based language that's embeddable, so sorry for the short example. (Many more on https://celbyexample.com.)
(I don't think the details/summary work in the pull request template, because the markdown is within HTML, so I've just made it markdown below.)
Representative code sample
parser repo: https://github.com/bufbuild/tree-sitter-cel
Parsed tree for code sample
Source of queries: written from scratch; cobbled together from other tree-sitter repositories.
Screenshots of code sample