text stringlengths 12 786k |
|---|
module DocumentSelector = struct type selector = ( [ ` Filter of DocumentFilter . t | ` String of string ] [ @ js . union ] ) [ @@ js ] let selector_of_js js_val = match Ojs . type_of js_val with | " string " -> ` String ( [ % js . to : string ] js_val ) | _ -> ` ... |
module DocumentFormattingEditProvider = struct include Interface . Make ( ) include [ % js : val provideDocumentFormattingEdits : t -> document : TextDocument . t -> options : FormattingOptions . t -> token : CancellationToken . t -> TextEdit . t list ProviderResult . t [ @@ js . call ... |
module Hover = struct include Interface . Make ( ) include [ % js : val contents : t -> MarkdownString . t [ @@ js . get ] val range : t -> Range . t or_undefined [ @@ js . get ] val make : contents : ( [ ` MarkdownString of MarkdownString . t | ` MarkdownStringArray of Mar... |
module HoverProvider = struct include Interface . Make ( ) include [ % js : val provideHover : t -> document : TextDocument . t -> position : Position . t -> token : CancellationToken . t -> Hover . t ProviderResult . t [ @@ js . call ] val create : provideHover : ( document : T... |
module TaskGroup = struct include Class . Make ( ) include [ % js : val clean : t [ @@ js . global " vscode . TaskGroup . Clean " ] val build : t [ @@ js . global " vscode . TaskGroup . Build " ] val rebuild : t [ @@ js . global " vscode . TaskGroup . Rebuild " ]... |
module TaskScope = struct type t = | Folder of WorkspaceFolder . t | Global | Workspace let t_to_js = function | Folder f -> [ % js . of : WorkspaceFolder . t ] f | Global -> [ % js . of : int ] 1 | Workspace -> [ % js . of : int ] 2 let t_of_js js_val = match Ojs . type_of ... |
module RunOptions = struct include Interface . Make ( ) include [ % js : val reevaluateOnRerun : t -> bool or_undefined [ @@ js . get ] val create : ? reevaluateOnRerun : bool -> unit -> t [ @@ js . builder ] ] end |
module TaskRevealKind = struct type t = | Always [ @ js 1 ] | Silent [ @ js 2 ] | Never [ @ js 3 ] [ @@ js . enum ] [ @@ js ] end |
module TaskPanelKind = struct type t = | Shared [ @ js 1 ] | Dedicated [ @ js 2 ] | New [ @ js 3 ] [ @@ js . enum ] [ @@ js ] end |
module TaskPresentationOptions = struct include Interface . Make ( ) include [ % js : val reveal : t -> TaskRevealKind . t or_undefined [ @@ js . get ] val echo : t -> bool or_undefined [ @@ js . get ] val focus : t -> bool or_undefined [ @@ js . get ] val panel : t -> TaskPane... |
module Task = struct include Class . Make ( ) type execution = ( [ ` ProcessExecution of ProcessExecution . t | ` ShellExecution of ShellExecution . t | ` CustomExecution of CustomExecution . t ] [ @ js . union ] ) [ @@ js ] let execution_of_js js_val = if Ojs . has_property... |
module TaskProvider = struct include Interface . Generic ( Ojs ) ( ) module Make ( T : Js . T ) = struct type t = T . t generic [ @@ js ] include [ % js : val provideTasks : t -> token : CancellationToken . t -> T . t list ProviderResult . t [ @@ js . call ] val resolveTa... |
module ConfigurationScope = struct type t = ( [ ` Uri of Uri . t | ` TextDocument of TextDocument . t | ` WorkspaceFolder of WorkspaceFolder . t ] [ @ js . union ] ) [ @@ js ] let t_of_js js_val = if Ojs . has_property js_val " path " then ` Uri ( [ % js . to : Uri .... |
module MessageOptions = struct include Interface . Make ( ) include [ % js : val modal : t -> bool or_undefined [ @@ js . get ] val create : ? modal : bool -> unit -> t [ @@ js . builder ] ] end |
module Progress = struct include Interface . Make ( ) type value = { message : string or_undefined ; increment : int or_undefined } [ @@ js ] include [ % js : val report : t -> value : value -> unit [ @@ js . call ] ] end |
module TextDocumentContentChangeEvent = struct include Interface . Make ( ) include [ % js : val range : t -> Range . t [ @@ js . get ] val rangeLength : t -> int [ @@ js . get ] val rangeOffset : t -> int [ @@ js . get ] val text : t -> string [ @@ js . get ] ] end |
module TextDocumentChangeEvent = struct include Interface . Make ( ) include [ % js : val contentChanges : t -> TextDocumentContentChangeEvent . t list [ @@ js . get ] val document : t -> TextDocument . t [ @@ js . get ] ] end |
module TextDocumentContentProvider = struct include Interface . Make ( ) module OnDidChange = Event . Make ( Uri ) include [ % js : val onDidChange : t -> OnDidChange . t or_undefined [ @@ js . get ] val provideTextDocumentContent : t -> uri : Uri . t -> token : CancellationToken . ... |
module FileSystemWatcher = struct include Interface . Make ( ) module OnDidChange = Event . Make ( Uri ) include [ % js : val onDidChange : t -> OnDidChange . t [ @@ js . get ] ] end |
module Workspace = struct module OnDidChangeWorkspaceFolders = Event . Make ( WorkspaceFolder ) module OnDidOpenTextDocument = Event . Make ( TextDocument ) module OnDidCloseTextDocument = Event . Make ( TextDocument ) module OnDidSaveTextDocument = Event . Make ( TextDocument ) module OnDi... |
module TreeItemCollapsibleState = struct type t = | None [ @ js 0 ] | Collapsed [ @ js 1 ] | Expanded [ @ js 2 ] [ @@ js . enum ] [ @@ js ] end |
module CustomDocument = struct module type T = sig include Js . T val uri : t -> Uri . t val dispose : t -> unit end include Interface . Make ( ) include [ % js : val uri : t -> Uri . t [ @@ js . get ] val dispose : t -> unit [ @@ js . call ] val create : uri : Uri . t -> di... |
module TreeItemLabel = struct include Interface . Make ( ) include [ % js : val label : t -> string [ @@ js . get ] val highlights : t -> ( int * int ) list or_undefined [ @@ js . get ] val create : label : string -> ? highlights ( : int * int ) list -> unit -> t [ @@ js... |
module ThemeIcon = struct include Class . Make ( ) include [ % js : val make : id : string -> ? color : ThemeColor . t -> unit -> t [ @@ js . new " vscode . ThemeIcon " ] val file : t [ @@ js . global " vscode . ThemeIcon . File " ] val folder : t [ @@ js . global ... |
module TreeItem = struct include Class . Make ( ) type label = ( [ ` String of string | ` TreeItemLabel of TreeItemLabel . t ] [ @ js . union ] ) [ @@ js ] let label_of_js js_val = if Ojs . type_of js_val = " string " then ` String ( [ % js . to : string ] js_val )... |
module TreeDataProvider = struct include Interface . Generic ( Ojs ) ( ) module Make ( T : Js . T ) = struct type t = T . t generic [ @@ js ] module OnDidChangeTreeData = Event . Make ( struct type t = T . t or_undefined [ @@ js ] end ) type getTreeItemResult = ( [ ` Val... |
module TreeViewOptions = struct include Class . Generic ( Ojs ) ( ) module Make ( T : Js . T ) = struct type t = T . t generic [ @@ js ] module TreeDataProvider = TreeDataProvider . Make ( T ) include [ % js : val treeDataProvider : t -> TreeDataProvider . t [ @@ js . get ... |
module TreeViewExpansionEvent = struct include Interface . Generic ( Ojs ) ( ) module Make ( T : Js . T ) = struct type t = T . t generic [ @@ js ] include [ % js : val element : t -> T . t [ @@ js . get ] val create : element : T . t -> t [ @@ js . builder ] ] en... |
module TreeViewSelectionChangeEvent = struct include Interface . Generic ( Ojs ) ( ) module Make ( T : Js . T ) = struct type t = T . t generic [ @@ js ] include [ % js : val selection : t -> T . t list [ @@ js . get ] val create : selection : T . t list -> t [ @@ js . ... |
module TreeViewVisibilityChangeEvent = struct include Interface . Make ( ) include [ % js : val visible : t -> bool [ @@ js . get ] val create : visible : bool -> t [ @@ js . builder ] ] end |
module TreeView = struct include Class . Generic ( Disposable ) ( ) module Make ( T : Js . T ) = struct type t = T . t generic [ @@ js ] module OnDidExpandElement = Event . Make ( TreeViewExpansionEvent . Make ( T ) ) module OnDidCollapseElement = Event . Make ( TreeViewExpa... |
module WebviewPanelOptions = struct include Interface . Make ( ) include [ % js : val enableFindWidget : t -> bool or_undefined [ @@ js . get ] val retainContextWhenHidden : t -> bool or_undefined [ @@ js . get ] ] end |
module WebviewPortMapping = struct include Interface . Make ( ) include [ % js : val extensionHostPort : t -> int [ @@ js . get ] val webviewPort : t -> int [ @@ js . get ] ] end |
module WebviewOptions = struct include Interface . Make ( ) include [ % js : val enableCommandUris : t -> bool [ @@ js . get ] val enableScripts : t -> bool [ @@ js . get ] val set_enableScripts : t -> bool -> unit [ @@ js . set ] val localResourceRoots : t -> Uri . t list [ ... |
module WebView = struct include Interface . Make ( ) module OnDidReceiveMessage = Event . Make ( Js . Any ) include [ % js : val onDidReceiveMessage : t -> OnDidReceiveMessage . t [ @@ js . get ] val cspSource : t -> string [ @@ js . get ] val html : t -> string [ @@ js . ... |
module WebviewPanel = struct include Interface . Make ( ) module WebviewPanelOnDidChangeViewStateEvent = struct type webviewPanel = t [ @@ js ] include Interface . Make ( ) include [ % js : val webviewPanel : t -> webviewPanel [ @@ js . get ] ] end module LightDarkIcon = struct type ... |
module CustomTextEditorProvider = struct include Interface . Make ( ) module ResolvedEditor = struct type t = ( [ ` Promise of Promise . void | ` Unit of Js . Unit . t ] [ @ js . union ] ) [ @@ js ] let t_of_js js_val = if Ojs . is_null js_val then ` Unit ( [ % js . t... |
module CustomDocumentOpenContext = struct include Interface . Make ( ) include [ % js : val backupId : t -> string or_undefined [ @@ js . get ] ] end |
module CustomReadonlyEditorProvider = struct include Interface . Generic ( Ojs ) ( ) module Make ( T : CustomDocument . T ) = struct type t = T . t generic [ @@ js ] include [ % js : val openCustomDocument : t -> uri : Uri . t -> openContext : CustomDocumentOpenContext . t -> to... |
module RegisterCustomEditorProviderOptions = struct include Interface . Make ( ) include [ % js : val supportsMultipleEditorsPerDocument : t -> bool or_undefined [ @@ js . get ] val create : ? supportsMultipleEditorsPerDocument : bool -> unit -> t [ @@ js . builder ] ] end |
module Window = struct module OnDidChangeActiveTextEditor = Event . Make ( TextEditor ) module OnDidChangeVisibleTextEditors = Event . Make ( Js . List ( TextEditor ) ) module OnDidChangeActiveTerminal = Event . Make ( Js . Or_undefined ( Terminal ) ) module OnDidOpenTerminal = Event ... |
module Commands = struct include [ % js : val registerCommand : command : string -> callback ( : args ( : Js . Any . t list [ @ js . variadic ] ) -> unit ) -> Disposable . t [ @@ js . global " vscode . commands . registerCommand " ] val registerTextEditorCommand : comman... |
module Languages = struct include [ % js : val registerDocumentFormattingEditProvider : selector : DocumentSelector . t -> provider : DocumentFormattingEditProvider . t -> Disposable . t [ @@ js . global " vscode . languages . registerDocumentFormattingEditProvider " ] val registerHoverPr... |
module Tasks = struct include [ % js : val registerTaskProvider : type_ : string -> provider : TaskProvider . Default . t -> Disposable . t [ @@ js . global " vscode . tasks . registerTaskProvider " ] ] end |
module Env = struct include [ % js : val shell : unit -> string [ @@ js . get " vscode . env . shell " ] ] end |
module RevealOutputChannelOn = struct type t = | Info [ @ js 1 ] | Warn [ @ js 2 ] | Error [ @ js 3 ] | Never [ @ js 4 ] [ @@ js . enum ] [ @@ js ] end |
module ServerCapabilities = struct include Interface . Make ( ) include [ % js : val experimental : t -> Jsonoo . t or_undefined [ @@ js . get ] val create : ? experimental : Jsonoo . t -> unit -> t [ @@ js . builder ] ] end |
module InitializeResult = struct include Interface . Make ( ) type serverInfo = { name : string ; version : string or_undefined } [ @@ js ] include [ % js : val capabilities : t -> ServerCapabilities . t [ @@ js . get ] val serverInfo : t -> serverInfo or_undefined [ @@ js . g... |
module DocumentFilter = struct include Interface . Make ( ) include [ % js : val language : t -> string or_undefined [ @@ js . get ] val scheme : t -> string or_undefined [ @@ js . get ] val pattern : t -> string or_undefined [ @@ js . get ] val createLanguage : language : string... |
module DocumentSelector = struct type selector = ( [ ` Filter of DocumentFilter . t | ` String of string ] [ @ js . union ] ) [ @@ js ] let selector_of_js js_val = match Ojs . type_of js_val with | " string " -> ` String ( [ % js . to : string ] js_val ) | _ -> ` ... |
module ClientOptions = struct include Interface . Make ( ) include [ % js : val documentSelector : t -> DocumentSelector . t or_undefined [ @@ js . get ] val outputChannel : t -> Vscode . OutputChannel . t or_undefined [ @@ js . get ] val revealOutputChannelOn : t -> RevealOutputCha... |
module ExecutableOptions = struct include Interface . Make ( ) include [ % js : val cwd : t -> string or_undefined [ @@ js . get ] val env : t -> string Dict . t or_undefined [ @@ js . get ] val detached : t -> bool or_undefined [ @@ js . get ] val shell : t -> bool or_undefine... |
module Executable = struct include Interface . Make ( ) include [ % js : val command : t -> string [ @@ js . get ] val args : t -> string list or_undefined [ @@ js . get ] val options : t -> ExecutableOptions . t or_undefined [ @@ js . get ] val create : command : string -> ?... |
module ClientCapabilities = struct include Interface . Make ( ) include [ % js : val experimental : t -> Jsonoo . t or_undefined [ @@ js . get ] val set_experimental : t -> Jsonoo . t or_undefined -> unit [ @@ js . set ] ] end |
module InitializeParams = struct include Interface . Make ( ) end |
module StaticFeature = struct include Interface . Make ( ) include [ % js : val make : ? fillInitializeParams ( : params : InitializeParams . t -> unit ) -> fillClientCapabilities ( : capabilities : ClientCapabilities . t -> unit ) -> initialize : ( capabilities : ServerCapabilities... |
module LanguageClient = struct include Class . Make ( ) include [ % js : val make : id : string -> name : string -> serverOptions : ServerOptions . t -> clientOptions : ClientOptions . t -> ? forceDebug : bool -> unit -> t [ @@ js . new " vscode_languageclient . LanguageClient " ]... |
let suggest_to_pick_sandbox ( ) = let open Promise . Syntax in let select_pm_button_text = " Select package manager and sandbox " in let + selection = Window . showInformationMessage ~ message : " OCaml Platform is using the package manager and sandbox available in \ the environment . Pick a part... |
let activate ( extension : ExtensionContext . t ) = Process . Env . set " OCAML_LSP_SERVER_LOG " " " ; - let open Promise . Syntax in let instance = Extension_instance . make ( ) in ExtensionContext . subscribe extension ~ disposable ( : Extension_instance . disposable instance )... |
let ( ) = let open Js_of_ocaml . Js in export " activate " ( wrap_callback activate ) |
module T = Uterm open struct let get_id_of_lb_arg = function | Uast . Lunit -> assert false | Uast . Lnone id | Loptional id | Lnamed id | Lghost ( id , _ ) -> id end let loc_of_lb_arg = function | Uast . Lunit -> T . dummy_loc | lb -> T . location ( get_id_of_lb_arg lb ) . pid_loc ... |
let sp_post sp_hd_ret sp_post = let term_loc = T . location sp_post . Uast . term_loc in let mk_pvar lb = let pat_loc = loc_of_lb_arg lb in T . mk_pattern ( Pvar ( ident_of_lb_arg lb ) ) ~ pat_loc in let pvar_of_lb_arg_list lb_arg_list = List . map mk_pvar lb_arg_list in let pat = match pvar_of... |
let sp_post_no_ret sp_post = let term_loc = T . location sp_post . Uast . term_loc in let id_result = T . mk_id " result " in ( term_loc , [ ( T . mk_pattern ( Pvar id_result ) , T . term true sp_post ) ] ) |
let sp_xpost ( loc , q_pat_t_option_list ) = let loc = T . location loc in let pat_term ( q , t ) = ( T . pattern q , T . term true t ) in let qualid_pat_term_opt ( q , pt_opt ) = ( T . qualid q , Opt . map pat_term pt_opt ) in ( loc , List . map qualid_pat_term_opt q_p... |
let empty_spec = { sp_pre = [ ] ; sp_post = [ ] ; sp_xpost = [ ] ; sp_reads = [ ] ; sp_writes = [ ] ; sp_alias = [ ] ; sp_variant = [ ] ; sp_checkrw = false ; sp_diverge = false ; sp_partial = false ; } |
let vspec spec = let sp_writes = List . map ( T . term false ) spec . Uast . sp_writes in let sp_checkrw = match sp_writes with [ ] -> false | _ -> true in let sp_post = match spec . Uast . sp_header with | None -> List . map sp_post_no_ret spec . sp_post | Some hd -> List . map ( ... |
let fun_spec spec = { sp_pre = List . map ( T . term false ) spec . Uast . fun_req ; sp_post = List . map sp_post_no_ret spec . fun_ens ; sp_xpost = [ ] ; sp_reads = [ ] ; sp_writes = [ ] ; sp_alias = [ ] ; sp_variant = List . map ( fun t -> ( T . term fals... |
let spec_union s1 s2 = { sp_pre = s1 . sp_pre @ s2 . sp_pre ; sp_post = s1 . sp_post @ s2 . sp_post ; sp_xpost = s1 . sp_xpost @ s2 . sp_xpost ; sp_reads = s1 . sp_reads @ s2 . sp_reads ; sp_writes = s1 . sp_writes @ s2 . sp_writes ; sp_alias = s1 . sp_alias @ s2 . sp_al... |
let add_word ? custom name dict = let open L in { dict with words = Dict . add name ? custom dict . words } |
let add role ? custom name dict = let open L in { dict with words = Dict . add name ? custom dict . words ; roles = R . add ( String . lowercase_ascii name ) role dict . roles ; } |
let add_ext x exts = S . add ( String . lowercase_ascii x ) exts |
let vendor_tag ( dict , out ) ( x : Structured_spec . short_tag ) = ( add Extension x . name dict , add_ext x . name out ) |
let empty = let open L in { words = Dict . empty ; roles = R . empty ; context = { mu with prefix = [ " vk " ] } } |
let add_post x dict = L . { dict with roles = R . add x Postfix dict . roles } |
let add_pre x dict = L . { dict with roles = R . add x Prefix dict . roles } |
let make spec = let dict , exts = List . fold_left vendor_tag ( empty , S . empty ) spec . Structured_spec . tags in dict |> add Main " RandR " |> add Main " RR " |> add Main " DirectFB " |> add Main " FB " |> add Main " D3D12 " |> add Main " MacOS " |> add Main " LOD ... |
object method msg : Js . js_string Js . t Js . readonly_prop method indicator : Js . js_string Js . t Js . readonly_prop method file : Js . js_string Js . t Js . readonly_prop method line : int Js . readonly_prop method col : int Js . readonly_prop end object method code : Js . js_string J... |
let new_object ( ) = Js . Unsafe . coerce ( object % js end ) |
let convertOutputErrors errors = let makeErrorObject error : error Js . t = let msg , indicator , file , line , col = Error . reportErrorStringNoLoc error in object % js val msg = Js . string msg val indicator = Js . string indicator val file = Js . string file val line = line val col = col ... |
let convertInputFile ( i : js_file_code Js . t ) : input list = match Js . Optdef . to_option i . ## file , Js . Optdef . to_option i . ## code with | Some file , Some code -> [ Code ( Js . to_string file , Js . to_string code ) ] | Some file , None -> [ File ( Js . ... |
let convertInputFiles ( files : js_file_code Js . t Js . js_array Js . t ) : input list = Js . to_array files |> Array . map convertInputFile |> Array . to_list |> List . flatten |
let getFile ( args : args ) ( ext : FileKind . t ) : string = match ext with | FileKind . ExtOnly e -> args . output ^ " . " ^ e | FileKind . FullName n -> Filename . concat ( Filename . dirname args . output ) n |
let convertOutputFile ( file : string ) ( code : string ) : js_file_code Js . t = let obj = new_object ( ) in obj . ## file := Js . string file ; obj . ## code := Js . string code ; obj |
let convertOutputFiles args files = List . map ( fun ( text , file ) -> convertOutputFile ( getFile args file ) ( Pla . print text ) ) files |> Array . of_list |> Js . array |
let set value fset = if Js . Optdef . test value then Js . Optdef . iter value ( fun a -> fset a ) |
let convertCodeName code = match code with | " c " -> CCode | " js " -> JSCode | " lua " -> LuaCode | _ -> failwith ( Printf . sprintf " unknow code generator ' % s ' " code ) |
let getArguments ( obj : js_args Js . t ) = let args = { default_arguments with files = [ ] } in set obj . ## dparse ( fun v -> args . dparse <- v ) ; set obj . ## deps ( fun v -> args . deps <- v ) ; set obj . ## check ( fun v -> args . check <- v ) ; set obj . ... |
let applyOptions ( options : options Js . t ) ( args : args ) = set options . ## output ( fun v -> args . output <- Js . to_string v ) ; set options . ## real ( fun v -> args . real <- Js . to_string v ) ; set options . ## template ( fun v -> args . template <- Js . ... |
let showResult ( args : args ) ( output : output ) : ' a Js . t = match output with | Version v -> let obj = new_object ( ) in obj . ## version := Js . string v ; obj | Message v -> let obj = new_object ( ) in obj . ## message := Js . string v ; obj | Dependencies deps ->... |
let showResults ( args : args ) ( results : output list ) = results |> List . map ( showResult args ) |> Array . of_list |> Js . array |
let main ( input : js_args Js . t ) = let args = getArguments input in Driver . main args |> showResults args |
let version = let args = { default_arguments with show_version = true } in match Driver . main args with | [ Version v ] -> Js . string v | _ -> failwith " unknown error " |
let codeGeneration args results = match results with | GeneratedCode files :: _ -> convertOutputFiles args files |> Js . Unsafe . coerce | Errors errors :: _ -> convertOutputErrors errors |> Js . Unsafe . coerce | _ -> failwith " unknown error " |
let generateJs ( files : js_file_code Js . t Js . js_array Js . t ) ( options : ' a Js . t ) = let args = { default_arguments with code = JSCode ; files = convertInputFiles files } in let ( ) = applyOptions options args in let results = Driver . main args in codeGeneration args res... |
let generateC ( files : js_file_code Js . t Js . js_array Js . t ) ( options : ' a Js . t ) = let args = { default_arguments with code = CCode ; files = convertInputFiles files } in let ( ) = applyOptions options args in let results = Driver . main args in codeGeneration args resul... |
let generateLua ( files : js_file_code Js . t Js . js_array Js . t ) ( options : ' a Js . t ) = let args = { default_arguments with code = LuaCode ; files = convertInputFiles files } in let ( ) = applyOptions options args in let results = Driver . main args in codeGeneration args r... |
let _ = Js . export_all ( object % js method main = main method version = version method generateJs = generateJs method generateC = generateC method generateLua = generateLua end ) |
let generateJSCode s = let args = { default_arguments with code = JSCode ; real = " js " ; template = " browser " ; files = [ Code ( " live . vult " , Js . to_string s ) ] } in match Driver . main args with | [ GeneratedCode [ ( code , _ ) ] ] -> Js . strin... |
let makeAceError ( e : Error . t ) = let msg , indicator , _ , line , col = Error . reportErrorStringNoLoc e in Js . Unsafe . obj [ | " text " , Js . Unsafe . inject ( Js . string ( msg ^ " \ n " ^ indicator ) ) ; " row " , Js . Unsafe . inject ( Js . ... |
let checkCode s = let args = { default_arguments with check = true ; files = [ Code ( " live . vult " , Js . to_string s ) ] } in match Driver . main args with | [ Errors errors ] -> let error_objects = List . map makeAceError errors in error_objects |> Array . of_list |> Js .... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.