Josh Tynjala

Results 145 issues of Josh Tynjala

This is a request to document in the readme that there's a requirement to send a didChangeConfiguration notification as part of initializing the Haxe language server. Making the notification optional...

bug

I get the following error in Moonshine when trying to create a new Grails project: ``` : Creating Grails application NewGrailsProject : | Error /Users/joshtynjala/Development/Work/prominic/TestProjects/NewGrailsProject (NOTE: Stack trace has been...

investigation

Example: ```as3 package { public class CommentInsideFunctionParameters { public function CommentInsideFunctionParameters(param:Object=null /** asdoc comment is bad? **/) { } } } ``` The Royale compiler gives the following error, but...

bug

Allowing boolean to store anything except `true` and `false` breaks loose comparison with the `==` operator. That's much more serious than breaking strict comparison with the `===` operator! ``` as3...

bug

A developer using `int` or `uint` will never want floating point values. Otherwise, they'd be using `Number` instead. We need to ensure that `int` and `uint` behave correctly in our...

bug

```mxml ``` Results in the following problem (code 1549): > input ended before ASDoc is closed. In the Flex SDK compiler, an empty XML comment is allowed. I tested at...

bug

I created a subclass of `Parser`, and I tried to use it inside a macro. It failed with compiler error "A generic class can't have static fields". As you can...

```haxe var b:Dynamic = true; var i:Dynamic = 1; trace(b == i); // true, but should be false ``` Other targets like Neko and HashLink have the correct result of...

Original: ```haxe for (i in (startLine + 1)...endLine) ``` Wrong formatting: ```haxe for (i in(startLine + 1)...endLine) ```