Lukasz Czerwinski

Results 44 issues of Lukasz Czerwinski

``` 🦄 .editor // Entering editor mode (^D to finish, ^C to cancel) let a = 3 let a = 4 a ``` Expected: Error - variable 'a' is already...

bug
good first issue
AskVM
size: 2h (small)
first-timers-only

Currently parser errors are neither short nor easy to read. First of all, the location should be much much shorter. Ideally, the message should be more friendly too. A standard...

enhancement
AskScript
DX/CLI/Playground

I tried to translate a couple of Javascript scripts to AskScript and often I get blocked on some missing resources or language constructs. This ticket will list them all.

enhancement
AskScript
AskVM
discussion
type:syntax
P2
type:resources

The following example should work but results in a Syntax Error: ``` ask { [ // opening bracket 1, // first value 2, // second value 3 // third value...

bug
AskScript
type:syntax

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

Examples: ``` 3:toString 3:toString() 'a':__defineGetter__ 'a':__defineGetter__() ``` and other from Object.prototype return in an error: `Uncaught Error: Cannot call null` ![image](https://user-images.githubusercontent.com/12752520/85789441-e36a6200-b72e-11ea-9228-97023ab9fd64.png)

bug
help wanted
AskVM
DX/CLI/Playground
size: 2h (small)
type:resources