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

We'd like to make sure that our unit tests don't require network access to run.

enhancement
question
CI/TDD/DevOps

Javascript has both pre- and post-incrementation, useful in loops, e.g.: ``` let result = []; for (let i = 1; i

enhancement
AskScript
discussion
type:syntax

The following program does not work. The error is: ``` Error: Unknown identifier '='! ``` ``` // Below is a complete solution for a 5kyu Codewars task: // https://www.codewars.com/kata/54d81488b981293527000c8f/javascript //...

bug
AskVM
type:resources

Running the following program in the Playground: ``` ask { 3[1] } ``` returns: ``` null ``` Expected: ``` Error: cannot access indexes of a number ```

bug
AskVM

There are some operators in AskVM, e.g. 'lessThan' resource (< binary operator) (src/askvm/resources/math/lessThan.ts), but we are missing logical operators, like 'and' resource (&& operator). Dear new contributor, If you have...

enhancement
AskVM
type:operators
type:resources

Running a program with `remote` always results in an error. ``` 🦄 .editor // Entering editor mode (^D to finish, ^C to cancel) remote('/') { hi() } Uncaught TypeError: fetch...

bug
good first issue
help wanted
AskVM
size: 2h (small)
type:resources
first-timers-only

``` ask { const firstArg = fun { arguments:at('0') } firstArg(5) } ``` should return `5`

enhancement
good first issue
AskVM
type:resources
first-timers-only

enhancement
good first issue
AskVM
type:resources
first-timers-only

**Example 1** `(int, int) -> int` ``` const sum2: (int, int) -> int = fun (a:int, b:int) { a + b } const sum2: fun(int, int, int) = fun (a:int,...

enhancement
good first issue
help wanted
AskScript
type:syntax
first-timers-only

To provide better DX (developer experience), our parser should keep track of position (line, column) - ideally, `startLoc` and `endLoc` (see https://prettier.io/docs/en/plugins.html#parsers for context).

enhancement
good first issue
help wanted
AskScript
DX/CLI/Playground
first-timers-only