Chris Rybicki

Results 150 issues of Chris Rybicki

### Feature Spec Run `wing simulate ` to compile and start simulating your Wing app in the background (without the Wing Console). If your app contains any resources like `cloud.Api`...

โœจ enhancement
โŒจ๏ธ cli
needs-discussion

### Feature Spec Wing's compiler is now smart enough to recommend similar-named symbols when an unknown symbol is referenced. For example: ```js struct GithubIssue { issue_number: num; title: str; }...

โœจ enhancement
๐Ÿ› ๏ธ compiler

### I tried this ```js // wing code log(""); let body = "hello"; log(body); if true { let body = "${body}world"; log(body); } log(body); ``` ### Instead, this happened ```...

๐Ÿ› bug
๐Ÿ› ๏ธ compiler
good first issue

> Can we add a hint about `.copy()`? _Originally posted by @eladb in https://github.com/winglang/wing/pull/2267#discussion_r1177652331_

โœจ enhancement
๐Ÿ™‹โ€โ™€๏ธ help wanted
๐Ÿ› ๏ธ compiler

### Feature Spec > Based on https://github.com/winglang/wing/issues/4653#issuecomment-1792673237 ### Use Cases The current `test` syntax has some some issues and limitations: 1. The syntax is confusing - it expects inflight code,...

โœจ enhancement
๐Ÿ“ language-design
๐Ÿงช testing

Currently, the `JsonPatch` class can be used to apply overrides / updates to resources that have already been generated. However, sometimes these modifications do not appear in the generated YAML...

bug
effort/medium
priority/p1

### I tried this: https://www.winglang.io/docs/learn/reading-and-writing-files I tried clicking on "Edit this page" ### This happened: It takes me to a 404 ### I expected this: _No response_ ### Is there...

๐Ÿ› bug
๐Ÿ“š documentation

Adds docstring information to generated JSON schemas. ## Checklist - [x] Title matches [Winglang's style guide](https://www.winglang.io/contributing/start-here/pull_requests#how-are-pull-request-titles-formatted) - [x] Description explains motivation and solution - [x] Tests added (always) - [...

### Use Case To reduce bugs with writing code that is reflection heavy and dispatches based on what types have been reflected, it would be preferable to restrict the "kind"...

โœจ enhancement
๐ŸŽจ sdk
needs-discussion

### Use Case If I try reflecting on a class using the `@type` intrinsic, only public methods and fields are found: ```js class Foo { pub foo() {} bar() {}...

โœจ enhancement
๐Ÿ› ๏ธ compiler
needs-discussion