Chris Rybicki
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`...
### 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; }...
### 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 ```...
> Can we add a hint about `.copy()`? _Originally posted by @eladb in https://github.com/winglang/wing/pull/2267#discussion_r1177652331_
### 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,...
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...
### 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...
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"...
### 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() {}...