candy icon indicating copy to clipboard operation
candy copied to clipboard

🍭 A sweet, functional programming language that is robust, minimalistic, and expressive.

Results 139 candy issues
Sort by recently updated
recently updated
newest added

Bumps the typescript-eslint group in /vscode_extension with 2 updates: [@typescript-eslint/eslint-plugin](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/eslint-plugin) and [@typescript-eslint/parser](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/parser). Updates `@typescript-eslint/eslint-plugin` from 7.0.2 to 7.4.0 Release notes Sourced from @​typescript-eslint/eslint-plugin's releases. v7.4.0 7.4.0 (2024-03-25) 🚀 Features eslint-plugin:...

T: Build
P: Compiler: VS Code Extension

Bumps [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) from 20.11.20 to 20.12.2. Commits See full diff in compare view [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=@types/node&package-manager=npm_and_yarn&previous-version=20.11.20&new-version=20.12.2)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter...

T: Build
P: Compiler: VS Code Extension

Closes: #659 Added optional condtions to match cases in RCST, AST, and HIR, which are resolved to if/else in MIR. ### Checklist - [ ] Tests for the changes have...

P: Compiler: Language Server
P: Compiler: Frontend
P: Compiler: Formatter
P: Examples

Closes: #984 This PR adds a WASM-VM based on wasmer to the environment. It also adds a WASM package. ### Checklist - [ ] Tests for the changes have been...

P: Compiler: VM

Bumps [typescript](https://github.com/Microsoft/TypeScript) from 5.3.3 to 5.4.3. Release notes Sourced from typescript's releases. TypeScript 5.4.3 For release notes, check out the release announcement. For the complete list of fixed issues, check...

T: Build
P: Compiler: VS Code Extension

Closes: #828 ### Checklist - [ ] Tests for the changes have been added (for bug fixes / features) - [ ] Docs have been added / updated (for bug...

T: Fix
P: Compiler: Frontend
P: Compiler: Formatter

```candy listGetRange = generate (endExclusive | int.subtract startInclusive) { index -> list | get (startInclusive | int.add index) } ``` ```rust // https://github.com/candy-lang/candy/issues/715 // listGetRange = generate (endExclusive | int.subtract...

T: Fix
P: Compiler: Formatter

### Input ```candy checkEquals decodeFile "aaa,bbb,ccctext.newlinezzz,yyy,xxxtext.newline" (("aaa", "bbb", "ccc"), ("zzz", "yyy", "xxx")) ``` ### Actual Output ```candy checkEquals (decodeFile "aaa,bbb,ccctext.newlinezzz,yyy,xxxtext.newline") (("aaa", "bbb", "ccc"), ("zzz", "yyy", "xxx")) ``` ### Desired Output...

T: Fix
T: Feature
P: Compiler: Formatter

### Input ```candy ComplexNumber [ Real: value | real | fixedDecimal.negate, Imaginary: value | imaginary | fixedDecimal.negate, ] ``` ### Actual Output ```candy ComplexNumber [Real: value | real | fixedDecimal.negate,...

T: Fix
P: Compiler: Formatter