João Matos

Results 109 issues of João Matos

**What seems to be the problem?** We are trying to do: `files { "%{cfg.buildcfg}_%{cfg.platform}/file.cs" }` **What did you expect to happen?** Expected the generator to handle it but I see...

bug

If you go through the checkout process, up to payment screen, then go back to the store, and try adding some more products to the cart, you get hit with...

help wanted
good first issue

While trying the storefront and adding Mollie payments, I hit this issue: ``` [1] TypeError: Cannot read properties of undefined (reading 'exception') [1] at /home/joao/dev/storefront-remix-starter/app/graphqlWrapper.ts:92:47 [1] at processTicksAndRejections (node:internal/process/task_queues:95:5) [1]...

help wanted
good first issue

As the title says, adds support for Cosmos-based networks. Tested against the terra.js SDK.

So this is the initial work for trait contraints and is still not ready for review. The final PR will actually be split up since this one also contains a...

P: critical
compiler: frontend

This issue comes up on top of https://github.com/FuelLabs/sway/pull/2839 with the following test case: ```rust script; trait Store { fn store(self, key: b256); } impl Store for b256 { fn store(self,...

P: critical
compiler: frontend

This introduces a cache to the declaration engine that keeps track of functions/structs that have been instantiated from a specific set of type parameters. The approach here is relatively simple...

compiler: frontend

So as the title says, the integration_test native plugin is not being correctly registered unless running tests via XCTest, like when running via `flutter drive`. This unfortunately breaks use cases...

platform-ios
framework
customer: crowd
integration_test
has reproducible steps
P4
found in release: 2.5
found in release: 2.6
customer: dent

## Description This adds a module AST cache which speeds up the parsing and type checking stages for modules that have not changed. To make this work, when first parsing,...

``` script; enum TestEnum { A: u64, } fn main() { let a = TestEnum::A(0); if let TestEnum::A(_a) = a { } } ``` Currently throws this warning: ``` warning...

bug
compiler
DCA