Tsuf Cohen

Results 18 issues of Tsuf Cohen

### I tried this: I wanted to test wing code the awscdk target, I didn't have it installed on my machine. I ran: `wing test -t @winglang/platform-awscdk path-to-file` ### This...

๐Ÿ› bug
โŒจ๏ธ cli
good first issue
needs-discussion
๐Ÿ‘  platforms

### Use Case currently, we can't rename class properties, structs keys, and interface keys since it wasn't supported on #6461 ### Proposed Solution _No response_ ### Implementation Notes _No response_...

โœจ enhancement
๐Ÿ“ก language-server
needs-discussion

### Use Case Assume we want to customize namespace names, we can't since it's excluded from the regular rename refactor implementation- https://github.com/winglang/wing/blob/79bddc6a90fab2b3fc0c38fa30c61bcff0e11309/libs/wingc/src/lsp/rename_visitor.rs#L45-L49 since it needs a "customized" edit- `bring ex;`...

โœจ enhancement
๐Ÿ“ก language-server
needs-discussion

fixes: https://github.com/winglang/wing/issues/5540 ## Checklist - [ ] Title matches [Winglang's style guide](https://www.winglang.io/contributing/start-here/pull_requests#how-are-pull-request-titles-formatted) - [ ] Description explains motivation and solution - [ ] Tests added (always) - [ ] Docs...

### Use Case following 25/01/24 team time - we can only make wing's testing framework great if someone owns it, I'll collect the relevant issues and try my best to...

โœจ enhancement
๐Ÿงช testing
needs-discussion

fixes: #6940 Compiled output of the `SuperClass` (slightly different class than the one in the example): Test results: ## Checklist - [ ] Title matches [Winglang's style guide](https://www.winglang.io/contributing/start-here/pull_requests#how-are-pull-request-titles-formatted) - [...

fixes #5421 in addition to the examples in the issue, I added one with `MutMap` (since it was also missing). I noticed that `Set` and `MutSet` aren't legal `Json` values,...

### I tried this: ``` let a: MutJson = {a: 1, b: 0}; let b = MutJson {a: 1, b: 0}; a.delete("a"); b.delete("a"); ``` ### This happened: ### I expected...

๐Ÿ› bug

### I tried this: ``` let a: MutJson = {a: 1, b: 0}; let b = MutJson {a: 1, b: 0}; let c = {a: 1, b: 0}; let d:...

๐Ÿ› bug
๐Ÿ› ๏ธ compiler

### Feature Spec Assuming we have an optional Map, and we want to access one of its properties, `optional_map.get("property")` (or even `optional_map?.get("property")`) will throw the following error: "property access unsupported...

โœจ enhancement
๐Ÿ› ๏ธ compiler
good first issue