Hasan

Results 23 comments of Hasan

Another related example: ```js inflight class Foo { inflight foo: cloud.Secret; new(foo: cloud.Secret) { this.foo = foo; } inflight do() { this.foo.value(); } } ``` ```sh ❯ wing compile main.w...

If we want to take more time to plan out the syntax sugar for this, a potential interim solution could be to support writing Wing platforms in Wing, then could...

> It's feasible to synthesize AWS CDK constructs with Deno without modifying the code, thanks to [import maps](https://deno.com/[email protected]/basics/import_maps). A simple [live example](https://codesandbox.io/p/sandbox/gallant-ellis-rdxdsr?file=%2FREADME.md%3A11%2C57) is available. @skorfmann This seems super interesting. I...

I agree with @MarkMcCulloh I find the `if` expressions to make things look very busy but thats just preference.

@staycoolcall911 @eladb Should this be a P1 because of breaking change?

I think that will cause ambiguity IE how to know if `.get` represents a field in the Json or method.

Once this is implemented we should fix the Map API back to `size` rather than `size()` which I changed as part of: https://github.com/winglang/wing/pull/1653

> Do you mind showing how this will work with platform parameters, I am interested seeing a simple solution for such a common requirement @ekeren It would be simple to...

Queue names dont need to be globally unique in AWS, they must be unique to an account/region combo. There are also probably the same concerns with this as discussed in:...

I think the simplest solution for now is to change the return type of `cloud.Service` to return a `run` and `stop` handler, the `run` handler is called when `start` handler...