Leandro T. C. Melo
Leandro T. C. Melo
I made a description of the issue, together with a PR in (your other) [project](https://github.com/daveaglick/MsBuildPipeLogger/pull/2).
Given that .NET SDK versions don't roll forward automatically, the [`RollForward` MSBuild property](https://learn.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#rollforward) is quite useful; in particular with the imminence of a .NET 8 release, as there are .NET...
I'm unable to create a cross-compiled, runtime-specific, and self-contained application with `publish_binary`: while `publish_binary` produces the right runtime packs for the cross platform/architecture, the executable that it produces is wrong:...
### Issue Description I'm unable to build a `csharp_proto_library` due to a toolchain-related error. I can reproduce this error with the `csharp_proto_library` example on the master branch. ``` csharp_proto_library git:(master)...
As of the 2025 edition, [25.5.1 `JSON.parse ( text [ , reviver ] )`](https://tc39.es/ecma262/#sec-json.parse) reads as: _"This function parses a JSON text (a JSON-formatted String) and..."_ Yet, based on a...
In [13.15.5 Destructuring Assignment](https://tc39.es/ecma262/#prod-LeftHandSideExpression), we have: _"In certain circumstances when processing an instance of the production [AssignmentExpression](https://tc39.es/ecma262/#prod-AssignmentExpression) : [LeftHandSideExpression](https://tc39.es/ecma262/#prod-LeftHandSideExpression) = [AssignmentExpression](https://tc39.es/ecma262/#prod-AssignmentExpression) the interpretation of [LeftHandSideExpression](https://tc39.es/ecma262/#prod-LeftHandSideExpression) is refined using the following...
I suspect that the _assignment_expression_ in following piece of code is parsed incorrectly: ```javascript let o = { x: "s", y: 0 }; ({x: v, y: w} = o); ```...
It seems that the parse of a `new` expression combined with a tagged template is incorrect. Consider the snippet below. ```javascript function f() {} function i(template) { return f; }...