askql icon indicating copy to clipboard operation
askql copied to clipboard

AskQL is a query language that can express any data request

Results 117 askql issues
Sort by recently updated
recently updated
newest added

Working example of a bug

enhancement
DX/CLI/Playground

Question is how do define mutually recursive function? I guess we need hoisting for that but this probably only makes sense for constants

enhancement
AskVM
discussion

Currently `AskScriptAst` nodes are needlessly verbose with `props`. For example, instead of having this come out from `parseToAst` in `askscript` library: ```javascript { "name": "if", "props": { "condition": { "name":...

enhancement
good first issue
help wanted
AskScript

We would like to make AskScript developer-friendly, therefore we need developer tools in VS Code, such as providing function and method signatures tooltips, similar to what Typescript has: ![signature-help](https://user-images.githubusercontent.com/12752520/86921847-14ce2f00-c12c-11ea-977f-ecc714ae5575.gif) Info...

enhancement
AskScript
DX/CLI/Playground
type:vscode-tools
P2

In order to make AskScript developer-friendly, it would be nice to provide tooltips with symbol type, similar to what VSCode offers for Typescript and Javascript: ![hovers](https://user-images.githubusercontent.com/12752520/86922696-4dbad380-c12d-11ea-8c45-105343109971.gif) Info on integration with...

enhancement
AskScript
DX/CLI/Playground
type:vscode-tools
P2

In order to make AskScript more developer-friendly, it would be nice to offer Go To Definition in VS Code, similar to what VSCode offers for Typescript and Javascript: ![goto-definition](https://user-images.githubusercontent.com/12752520/86922409-df761100-c12c-11ea-82d6-81c9e332def5.gif) Info...

enhancement
AskScript
DX/CLI/Playground
type:vscode-tools
P2

We would like to make AskScript developer-friendly, therefore we need developer tools in VS Code, such as providing diagnostics for typing errors, similar to what VSCode provides for Typescript: ![diagnostics](https://user-images.githubusercontent.com/12752520/86922054-624a9c00-c12c-11ea-8534-67e416773062.gif)...

enhancement
AskScript
DX/CLI/Playground
type:vscode-tools
P2

We would like to make AskScript developer-friendly, therefore we need developer tools in VS Code, such as code completion, similar to what VSCode offers for Typescript and Javascript: ![code-completion](https://user-images.githubusercontent.com/12752520/86921907-2adbef80-c12c-11ea-862f-ae0260c471f5.gif) Info...

enhancement
AskScript
DX/CLI/Playground
release blocker
P1
type:vscode-tools

Currently runtime errors for AskScript programs are not very verbose and don't show location in code. E.g. program: ``` ask { a } ``` results in an error: ``` Error:...

enhancement
AskVM
DX/CLI/Playground

If we divide our workflows https://github.com/xFAANG/askql/blob/master/.github/workflows/askql-ci.yaml into multiple jobs run sequentially it will be easier for UI to say what caused the problem without having to look at the log...

enhancement
CI/TDD/DevOps