-
Notifications
You must be signed in to change notification settings - Fork 179
feat(web): Streamed code search #623
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
brendan-kellam
wants to merge
38
commits into
main
Choose a base branch
from
bkellam/streamed_search
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
38 commits
Select commit
Hold shift + click to select a range
a040ee1
generate protobuf types
brendan-kellam cca3d30
stream poc over SSE
brendan-kellam 9cd3236
wip: make stream search api follow existing schema. Modify UI to supp…
brendan-kellam 9f66c45
fix scrolling issue
brendan-kellam 4f39451
Dockerfile
brendan-kellam cfdadf2
wip on lezer parser grammar for query language
brendan-kellam 8dce2aa
add lezer tree -> grpc transformer
brendan-kellam 46c8d60
remove spammy log message
brendan-kellam ac9d05a
fix syntax highlighting by adding a module resolution for @lezer/common
brendan-kellam b966b63
further wip on query language
brendan-kellam 69e0a1a
Add case sensitivity and regexp toggles
brendan-kellam e6859cb
Improved type safety / cleanup for query lang
brendan-kellam 307e17e
support search contexts
brendan-kellam 09581f3
update Dockerfile with query langauge package
brendan-kellam b09def9
fix filter
brendan-kellam 74376c0
Add skeletons to filter panel when search is streaming
brendan-kellam c7ba32f
add client side caching
brendan-kellam 5ab585c
improved cancelation handling
brendan-kellam 9c9b6b9
add isSearchExausted flag for flagging when a search captured all res…
brendan-kellam d55dd13
Add back posthog search_finished event
brendan-kellam afcc30d
remove zoekt tenant enforcement
brendan-kellam 898c909
migrate blocking search over to grpc. Centralize everything in searchApi
brendan-kellam 696d06b
branch handling
brendan-kellam aad3507
plumb file weburl
brendan-kellam 3fd5f49
add repo_sets filter for repositories a user has access to
brendan-kellam bddbb76
refactor a bunch of stuff + add support for passing in Query IR to se…
brendan-kellam ceee66e
refactor
brendan-kellam 1d1205f
dev README
brendan-kellam 5c624cd
wip on better error handling
brendan-kellam 55a3e9e
error handling for stream path
brendan-kellam 93a3f89
update mcp
brendan-kellam a6e4092
changelog wip
brendan-kellam f52dfc7
type fix
brendan-kellam c477d76
style
brendan-kellam 2f6fc04
Support rev:* wildcard
brendan-kellam 5c80c53
changelog
brendan-kellam 7c964d9
changelog nit
brendan-kellam ac19251
feedback
brendan-kellam File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
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
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
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -18,7 +18,7 @@ | |
| "dev:prisma:studio": "yarn with-env yarn workspace @sourcebot/db prisma:studio", | ||
| "dev:prisma:migrate:reset": "yarn with-env yarn workspace @sourcebot/db prisma:migrate:reset", | ||
| "dev:prisma:db:push": "yarn with-env yarn workspace @sourcebot/db prisma:db:push", | ||
| "build:deps": "yarn workspaces foreach --recursive --topological --from '{@sourcebot/schemas,@sourcebot/db,@sourcebot/shared}' run build" | ||
| "build:deps": "yarn workspaces foreach --recursive --topological --from '{@sourcebot/schemas,@sourcebot/db,@sourcebot/shared,@sourcebot/query-language}' run build" | ||
| }, | ||
| "devDependencies": { | ||
| "concurrently": "^9.2.1", | ||
|
|
@@ -27,6 +27,7 @@ | |
| }, | ||
| "packageManager": "[email protected]", | ||
| "resolutions": { | ||
| "prettier": "3.5.3" | ||
| "prettier": "3.5.3", | ||
| "@lezer/common": "1.3.0" | ||
| } | ||
| } | ||
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
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1 +1,3 @@ | ||
| import type { User, Account } from ".prisma/client"; | ||
| export type UserWithAccounts = User & { accounts: Account[] }; | ||
| export * from ".prisma/client"; |
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
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
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
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,2 @@ | ||
| /node_modules/ | ||
| /dist |
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,19 @@ | ||
| { | ||
| "name": "@sourcebot/query-language", | ||
| "private": true, | ||
| "main": "dist/index.js", | ||
| "scripts": { | ||
| "build": "lezer-generator src/query.grammar -o src/parser --typeScript --names && tsc", | ||
| "test": "vitest" | ||
| }, | ||
| "devDependencies": { | ||
| "@lezer/generator": "^1.8.0", | ||
| "tsx": "^4.19.1", | ||
| "typescript": "^5.7.3", | ||
| "vitest": "^2.1.9" | ||
| }, | ||
| "dependencies": { | ||
| "@lezer/common": "^1.3.0", | ||
| "@lezer/lr": "^1.4.3" | ||
| } | ||
| } |
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,7 @@ | ||
| import { parser } from "./parser"; | ||
|
|
||
| type Tree = ReturnType<typeof parser.parse>; | ||
| type SyntaxNode = Tree['topNode']; | ||
| export type { Tree, SyntaxNode }; | ||
| export * from "./parser"; | ||
| export * from "./parser.terms"; |
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,21 @@ | ||
| // This file was generated by lezer-generator. You probably shouldn't edit it. | ||
| export const | ||
| negate = 22, | ||
| Program = 1, | ||
| OrExpr = 2, | ||
| AndExpr = 3, | ||
| NegateExpr = 4, | ||
| PrefixExpr = 5, | ||
| ArchivedExpr = 6, | ||
| RevisionExpr = 7, | ||
| ContentExpr = 8, | ||
| ContextExpr = 9, | ||
| FileExpr = 10, | ||
| ForkExpr = 11, | ||
| VisibilityExpr = 12, | ||
| RepoExpr = 13, | ||
| LangExpr = 14, | ||
| SymExpr = 15, | ||
| RepoSetExpr = 16, | ||
| ParenExpr = 17, | ||
| Term = 18 |
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,18 @@ | ||
| // This file was generated by lezer-generator. You probably shouldn't edit it. | ||
| import {LRParser} from "@lezer/lr" | ||
| import {negateToken} from "./tokens" | ||
| export const parser = LRParser.deserialize({ | ||
| version: 14, | ||
| states: "'[OVQROOO!WQQO'#CcO!WQQO'#CdO!WQQO'#CeO!WQQO'#CfO!`QSO'#CgO!kQSO'#ChO!WQQO'#CiO!WQQO'#CjO!WQQO'#CkO!WQQO'#ClOOQP'#Ca'#CaOVQRO'#CmO!vQQO'#C`OOQP'#Cn'#CnOOQP'#Cw'#CwO#nQRO'#CvO#{QQO'#CvO$WQQO'#C^OOQO'#Cu'#CuQOQQOOO!`QSO'#CbOOQP'#C}'#C}OOQP,58},58}OOQP,59O,59OOOQP,59P,59POOQP,59Q,59QOOQP'#DU'#DUOOQP,59R,59ROOQP'#DW'#DWOOQP,59S,59SOOQP,59T,59TOOQP,59U,59UOOQP,59V,59VOOQP,59W,59WO$]QQO,59XOOQP,58z,58zOOQP'#Co'#CoO$bQRO,58yOVQRO'#CpO$oQQO,58xOOQP,58|,58|OOQP1G.s1G.sOOQP-E6m-E6mO$zQRO'#CvOOQO'#Cv'#CvOOQO,59[,59[OOQO-E6n-E6n", | ||
| stateData: "%i~OhOS~Of]OleOpPOr^Os^OtQOuROvSOwTOyUO!OVO!PWO!QXO!RYO!S[O~OrfOsfO~OmkOnkOokO~O{mO|mO}mO~OleOpPOtQOuROvSOwTOyUO!OVO!PWO!QXO!RYO!S[O~OeiX!UjX!TiX~PVOeiX!UjX!TiX~O!UwO~O!TzO~OeRa!URa!TRa~PVO!UwOeQa!TQa~OejX!UjX!TjX~PVOrlptuvwy!O!P!Q!R!Usy~", | ||
| goto: "$`{PP|!Q!X!a!l!l!l!l!l!l!l!l!l!l!l!a!X!u!|PPPP#S#Y#aPPPPP#mPPPPPP$VP$]TcO[SaO[R}w]_O[`vw|[_O[`vw|Rt]_ZO[]`vw|Sv`|R{vQxbR!PxQdORs[SbO[R!OwS`O[Uu`v|R|wQgPQhQQiRQjSQoVQpWQqXRrYQlTRyeRnU", | ||
| nodeNames: "⚠ Program OrExpr AndExpr NegateExpr PrefixExpr ArchivedExpr RevisionExpr ContentExpr ContextExpr FileExpr ForkExpr VisibilityExpr RepoExpr LangExpr SymExpr RepoSetExpr ParenExpr Term", | ||
| maxTerm: 52, | ||
| skippedNodes: [0], | ||
| repeatNodeCount: 2, | ||
| tokenData: "!Hc~RpOX#VXY$TYZ$TZp#Vpq$Tqr#Vrs$csx#Vxy&Vyz&[z#T#V#T#U&a#U#V#V#V#W0q#W#Y#V#Y#Z:{#Z#`#V#`#aCZ#a#b#V#b#cGu#c#dIm#d#e!!V#e#f#V#f#g!-k#g#h!7q#h#j#V#j#k!;_#k#m#V#m#n!Em#n;'S#V;'S;=`#}<%lO#VP#[ZsPOX#VZp#Vqr#Vsx#Vz}#V}!O#V!O![#V![!]#V!];'S#V;'S;=`#}<%lO#VP$QP;=`<%l#V~$YRh~XY$TYZ$Tpq$T~$fWOY$cZr$crs%Os#O$c#O#P%T#P;'S$c;'S;=`&P<%lO$c~%TOr~~%WRO;'S$c;'S;=`%a;=`O$c~%dXOY$cZr$crs%Os#O$c#O#P%T#P;'S$c;'S;=`&P;=`<%l$c<%lO$c~&SP;=`<%l$c~&[O!S~~&aO!T~~&f_sPOX#VZp#Vqr#Vsx#Vz}#V}!O#V!O![#V![!]#V!]#b#V#b#c'e#c#f#V#f#g)]#g;'S#V;'S;=`#}<%lO#VR'j]sPOX#VZp#Vqr#Vsx#Vz}#V}!O#V!O![#V![!]#V!]#m#V#m#n(c#n;'S#V;'S;=`#}<%lO#VR(jZ}QsPOX#VZp#Vqr#Vsx#Vz}#V}!O#V!O![#V![!]#V!];'S#V;'S;=`#}<%lO#V~)b]sPOX#VZp#Vqr#Vsx#Vz}#V}!O#V!O![#V![!]#V!]#V#V#V#W*Z#W;'S#V;'S;=`#}<%lO#V~*`]sPOX#VZp#Vqr#Vsx#Vz}#V}!O#V!O![#V![!]#V!]#[#V#[#]+X#];'S#V;'S;=`#}<%lO#V~+^]sPOX#VZp#Vqr#Vsx#Vz}#V}!O#V!O![#V![!]#V!]#]#V#]#^,V#^;'S#V;'S;=`#}<%lO#V~,[]sPOX#VZp#Vqr#Vsx#Vz}#V}!O#V!O![#V![!]#V!]#j#V#j#k-T#k;'S#V;'S;=`#}<%lO#V~-Y]sPOX#VZp#Vqr#Vsx#Vz}#V}!O#V!O![#V![!]#V!]#X#V#X#Y.R#Y;'S#V;'S;=`#}<%lO#V~.W]sPOX#VZp#Vqr#Vsx#Vz}#V}!O#V!O![#V![!]#V!]#W#V#W#X/P#X;'S#V;'S;=`#}<%lO#V~/UZsPOX#VZp#Vqr#Vsx#Vz}#V}!O#V!O![#V![!]/w!];'S#V;'S;=`#}<%lO#V~0OZl~sPOX#VZp#Vqr#Vsx#Vz}#V}!O#V!O![#V![!]#V!];'S#V;'S;=`#}<%lO#V~0v]sPOX#VZp#Vqr#Vsx#Vz}#V}!O#V!O![#V![!]1o!]#c#V#c#d2i#d;'S#V;'S;=`#}<%lO#V~1vZt~sPOX#VZp#Vqr#Vsx#Vz}#V}!O#V!O![#V![!]#V!];'S#V;'S;=`#}<%lO#V~2n]sPOX#VZp#Vqr#Vsx#Vz}#V}!O#V!O![#V![!]#V!]#b#V#b#c3g#c;'S#V;'S;=`#}<%lO#V~3l]sPOX#VZp#Vqr#Vsx#Vz}#V}!O#V!O![#V![!]#V!]#h#V#h#i4e#i;'S#V;'S;=`#}<%lO#V~4j]sPOX#VZp#Vqr#Vsx#Vz}#V}!O#V!O![#V![!]#V!]#X#V#X#Y5c#Y;'S#V;'S;=`#}<%lO#V~5h_sPOX#VZp#Vqr#Vsx#Vz}#V}!O#V!O![#V![!]#V!]#b#V#b#c6g#c#l#V#l#m8]#m;'S#V;'S;=`#}<%lO#V~6l]sPOX#VZp#Vqr#Vsx#Vz}#V}!O#V!O![#V![!]#V!]#h#V#h#i7e#i;'S#V;'S;=`#}<%lO#V~7jZsPOX#VZp#Vqr#Vsx#Vz}#V}!O#V!O![#V![!]1o!];'S#V;'S;=`#}<%lO#V~8b]sPOX#VZp#Vqr#Vsx#Vz}#V}!O#V!O![#V![!]#V!]#h#V#h#i9Z#i;'S#V;'S;=`#}<%lO#V~9`ZsPOX#VZp#Vqr#Vsx#Vz}#V}!O#V!O![#V![!]:R!];'S#V;'S;=`#}<%lO#V~:YZu~sPOX#VZp#Vqr#Vsx#Vz}#V}!O#V!O![#V![!]#V!];'S#V;'S;=`#}<%lO#V~;Q_sPOX#VZp#Vqr#Vsx#Vz}#V}!O#V!O![#V![!]<P!]#]#V#]#^<y#^#c#V#c#d?m#d;'S#V;'S;=`#}<%lO#V~<WZv~sPOX#VZp#Vqr#Vsx#Vz}#V}!O#V!O![#V![!]#V!];'S#V;'S;=`#}<%lO#V~=O]sPOX#VZp#Vqr#Vsx#Vz}#V}!O#V!O![#V![!]#V!]#`#V#`#a=w#a;'S#V;'S;=`#}<%lO#V~=|]sPOX#VZp#Vqr#Vsx#Vz}#V}!O#V!O![#V![!]#V!]#X#V#X#Y>u#Y;'S#V;'S;=`#}<%lO#V~>zZsPOX#VZp#Vqr#Vsx#Vz}#V}!O#V!O![#V![!]<P!];'S#V;'S;=`#}<%lO#V~?r]sPOX#VZp#Vqr#Vsx#Vz}#V}!O#V!O![#V![!]#V!]#f#V#f#g@k#g;'S#V;'S;=`#}<%lO#V~@p]sPOX#VZp#Vqr#Vsx#Vz}#V}!O#V!O![#V![!]#V!]#_#V#_#`Ai#`;'S#V;'S;=`#}<%lO#V~AnZsPOX#VZp#Vqr#Vsx#Vz}#V}!O#V!O![#V![!]Ba!];'S#V;'S;=`#}<%lO#V~BhZw~sPOX#VZp#Vqr#Vsx#Vz}#V}!O#V!O![#V![!]#V!];'S#V;'S;=`#}<%lO#V~C`]sPOX#VZp#Vqr#Vsx#Vz}#V}!O#V!O![#V![!]#V!]#T#V#T#UDX#U;'S#V;'S;=`#}<%lO#V~D^]sPOX#VZp#Vqr#Vsx#Vz}#V}!O#V!O![#V![!]#V!]#b#V#b#cEV#c;'S#V;'S;=`#}<%lO#V~E[]sPOX#VZp#Vqr#Vsx#Vz}#V}!O#V!O![#V![!]#V!]#Z#V#Z#[FT#[;'S#V;'S;=`#}<%lO#V~FYZsPOX#VZp#Vqr#Vsx#Vz}#V}!O#V!O![#V![!]F{!];'S#V;'S;=`#}<%lO#V~GSZ!P~sPOX#VZp#Vqr#Vsx#Vz}#V}!O#V!O![#V![!]#V!];'S#V;'S;=`#}<%lO#VRGz]sPOX#VZp#Vqr#Vsx#Vz}#V}!O#V!O![#V![!]#V!]#c#V#c#dHs#d;'S#V;'S;=`#}<%lO#VRHzZnQsPOX#VZp#Vqr#Vsx#Vz}#V}!O#V!O![#V![!]#V!];'S#V;'S;=`#}<%lO#V~Ir_sPOX#VZp#Vqr#Vsx#Vz}#V}!O#V!O![#V![!]#V!]#b#V#b#cJq#c#f#V#f#gMg#g;'S#V;'S;=`#}<%lO#VRJv]sPOX#VZp#Vqr#Vsx#Vz}#V}!O#V!O![#V![!]#V!]#`#V#`#aKo#a;'S#V;'S;=`#}<%lO#VRKt]sPOX#VZp#Vqr#Vsx#Vz}#V}!O#V!O![#V![!]#V!]#m#V#m#nLm#n;'S#V;'S;=`#}<%lO#VRLtZoQsPOX#VZp#Vqr#Vsx#Vz}#V}!O#V!O![#V![!]#V!];'S#V;'S;=`#}<%lO#V~MlfsPOX! QXZ! zZp! Qpq! zqr! Qrs! zsx! Qxz! zz}! Q}!O! Q!O!Q! Q!Q![#V![!]! Q!]!c! Q!c!}#V!}#R! Q#R#S#V#S#T! Q#T#o#V#o;'S! Q;'S;=`!!P<%lO! Q~! XZ!U~sPOX#VZp#Vqr#Vsx#Vz}#V}!O#V!O![#V![!]#V!];'S#V;'S;=`#}<%lO#V~!!PO!U~~!!SP;=`<%l! QR!![_sPOX#VZp#Vqr#Vsx#Vz}#V}!O#V!O![#V![!]#V!]#f#V#f#g!#Z#g#i#V#i#j!(y#j;'S#V;'S;=`#}<%lO#VR!#`]sPOX#VZp#Vqr#Vsx#Vz}#V}!O#V!O![#V![!]#V!]#]#V#]#^!$X#^;'S#V;'S;=`#}<%lO#VR!$^]sPOX#VZp#Vqr#Vsx#Vz}#V}!O#V!O![#V![!]#V!]#j#V#j#k!%V#k;'S#V;'S;=`#}<%lO#VR!%[]sPOX#VZp#Vqr#Vsx#Vz}#V}!O#V!O![#V![!]#V!]#T#V#T#U!&T#U;'S#V;'S;=`#}<%lO#VR!&Y]sPOX#VZp#Vqr#Vsx#Vz}#V}!O#V!O![#V![!]#V!]#h#V#h#i!'R#i;'S#V;'S;=`#}<%lO#VR!'W]sPOX#VZp#Vqr#Vsx#Vz}#V}!O#V!O![#V![!]#V!]#X#V#X#Y!(P#Y;'S#V;'S;=`#}<%lO#VR!(WZ|QsPOX#VZp#Vqr#Vsx#Vz}#V}!O#V!O![#V![!]#V!];'S#V;'S;=`#}<%lO#VR!)O]sPOX#VZp#Vqr#Vsx#Vz}#V}!O#V!O![#V![!]#V!]#U#V#U#V!)w#V;'S#V;'S;=`#}<%lO#VR!)|]sPOX#VZp#Vqr#Vsx#Vz}#V}!O#V!O![#V![!]#V!]#`#V#`#a!*u#a;'S#V;'S;=`#}<%lO#VR!*z]sPOX#VZp#Vqr#Vsx#Vz}#V}!O#V!O![#V![!]#V!]#]#V#]#^!+s#^;'S#V;'S;=`#}<%lO#VR!+x]sPOX#VZp#Vqr#Vsx#Vz}#V}!O#V!O![#V![!]#V!]#V#V#V#W!,q#W;'S#V;'S;=`#}<%lO#VR!,xZ{QsPOX#VZp#Vqr#Vsx#Vz}#V}!O#V!O![#V![!]#V!];'S#V;'S;=`#}<%lO#V~!-p]sPOX#VZp#Vqr#Vsx#Vz}#V}!O#V!O![#V![!]!.i!]#X#V#X#Y!/c#Y;'S#V;'S;=`#}<%lO#V~!.pZ!O~sPOX#VZp#Vqr#Vsx#Vz}#V}!O#V!O![#V![!]#V!];'S#V;'S;=`#}<%lO#V~!/h_sPOX#VZp#Vqr#Vsx#Vz}#V}!O#V!O![#V![!]#V!]#d#V#d#e!0g#e#j#V#j#k!6P#k;'S#V;'S;=`#}<%lO#V~!0l]sPOX#VZp#Vqr#Vsx#Vz}#V}!O#V!O![#V![!]#V!]#c#V#c#d!1e#d;'S#V;'S;=`#}<%lO#V~!1j]sPOX#VZp#Vqr#Vsx#Vz}#V}!O#V!O![#V![!]!.i!]#g#V#g#h!2c#h;'S#V;'S;=`#}<%lO#V~!2h]sPOX#VZp#Vqr#Vsx#Vz}#V}!O#V!O![#V![!]#V!]#X#V#X#Y!3a#Y;'S#V;'S;=`#}<%lO#V~!3f]sPOX#VZp#Vqr#Vsx#Vz}#V}!O#V!O![#V![!]#V!]#h#V#h#i!4_#i;'S#V;'S;=`#}<%lO#V~!4dZsPOX#VZp#Vqr#Vsx#Vz}#V}!O#V!O![#V![!]!5V!];'S#V;'S;=`#}<%lO#V~!5^Z!R~sPOX#VZp#Vqr#Vsx#Vz}#V}!O#V!O![#V![!]#V!];'S#V;'S;=`#}<%lO#V~!6UZsPOX#VZp#Vqr#Vsx#Vz}#V}!O#V!O![#V![!]!6w!];'S#V;'S;=`#}<%lO#V~!7OZp~sPOX#VZp#Vqr#Vsx#Vz}#V}!O#V!O![#V![!]#V!];'S#V;'S;=`#}<%lO#V~!7v]sPOX#VZp#Vqr#Vsx#Vz}#V}!O#V!O![#V![!]#V!]#m#V#m#n!8o#n;'S#V;'S;=`#}<%lO#V~!8t]sPOX#VZp#Vqr#Vsx#Vz}#V}!O#V!O![#V![!]#V!]#a#V#a#b!9m#b;'S#V;'S;=`#}<%lO#V~!9rZsPOX#VZp#Vqr#Vsx#Vz}#V}!O#V!O![#V![!]!:e!];'S#V;'S;=`#}<%lO#V~!:lZ!Q~sPOX#VZp#Vqr#Vsx#Vz}#V}!O#V!O![#V![!]#V!];'S#V;'S;=`#}<%lO#V~!;d]sPOX#VZp#Vqr#Vsx#Vz}#V}!O#V!O![#V![!]#V!]#]#V#]#^!<]#^;'S#V;'S;=`#}<%lO#V~!<b]sPOX#VZp#Vqr#Vsx#Vz}#V}!O#V!O![#V![!]#V!]#g#V#g#h!=Z#h;'S#V;'S;=`#}<%lO#V~!=`]sPOX#VZp#Vqr#Vsx#Vz}#V}!O#V!O![#V![!]#V!]#]#V#]#^!>X#^;'S#V;'S;=`#}<%lO#V~!>^]sPOX#VZp#Vqr#Vsx#Vz}#V}!O#V!O![#V![!]#V!]#U#V#U#V!?V#V;'S#V;'S;=`#}<%lO#V~!?[]sPOX#VZp#Vqr#Vsx#Vz}#V}!O#V!O![#V![!]#V!]#]#V#]#^!@T#^;'S#V;'S;=`#}<%lO#V~!@Y]sPOX#VZp#Vqr#Vsx#Vz}#V}!O#V!O![#V![!]#V!]#`#V#`#a!AR#a;'S#V;'S;=`#}<%lO#V~!AW]sPOX#VZp#Vqr#Vsx#Vz}#V}!O#V!O![#V![!]#V!]#]#V#]#^!BP#^;'S#V;'S;=`#}<%lO#V~!BU]sPOX#VZp#Vqr#Vsx#Vz}#V}!O#V!O![#V![!]#V!]#h#V#h#i!B}#i;'S#V;'S;=`#}<%lO#V~!CS]sPOX#VZp#Vqr#Vsx#Vz}#V}!O#V!O![#V![!]#V!]#m#V#m#n!C{#n;'S#V;'S;=`#}<%lO#V~!DQZsPOX#VZp#Vqr#Vsx#Vz}#V}!O#V!O![#V![!]!Ds!];'S#V;'S;=`#}<%lO#V~!DzZy~sPOX#VZp#Vqr#Vsx#Vz}#V}!O#V!O![#V![!]#V!];'S#V;'S;=`#}<%lO#VR!Er]sPOX#VZp#Vqr#Vsx#Vz}#V}!O#V!O![#V![!]#V!]#X#V#X#Y!Fk#Y;'S#V;'S;=`#}<%lO#VR!Fp]sPOX#VZp#Vqr#Vsx#Vz}#V}!O#V!O![#V![!]#V!]#g#V#g#h!Gi#h;'S#V;'S;=`#}<%lO#VR!GpZmQsPOX#VZp#Vqr#Vsx#Vz}#V}!O#V!O![#V![!]#V!];'S#V;'S;=`#}<%lO#V", | ||
| tokenizers: [negateToken, 0, 1], | ||
| topRules: {"Program":[0,1]}, | ||
| tokenPrec: 193, | ||
| termNames: {"0":"⚠","1":"@top","2":"OrExpr","3":"AndExpr","4":"NegateExpr","5":"PrefixExpr","6":"ArchivedExpr","7":"RevisionExpr","8":"ContentExpr","9":"ContextExpr","10":"FileExpr","11":"ForkExpr","12":"VisibilityExpr","13":"RepoExpr","14":"LangExpr","15":"SymExpr","16":"RepoSetExpr","17":"ParenExpr","18":"Term","19":"expr+","20":"(or andExpr)+","21":"␄","22":"negate","23":"%mainskip","24":"space","25":"query","26":"andExpr","27":"expr","28":"archivedKw","29":"\"yes\"","30":"\"no\"","31":"\"only\"","32":"revisionKw","33":"value","34":"quotedString","35":"word","36":"contentKw","37":"contextKw","38":"fileKw","39":"forkKw","40":"forkValue","41":"visibilityKw","42":"visibilityValue","43":"\"public\"","44":"\"private\"","45":"\"any\"","46":"repoKw","47":"langKw","48":"symKw","49":"reposetKw","50":"\"(\"","51":"\")\"","52":"or"} | ||
| }) |
Oops, something went wrong.
Oops, something went wrong.
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.
Uh oh!
There was an error while loading. Please reload this page.