Carl Husberg
Carl Husberg
### Description of the Issue Highlighting is not applied when opening a file through NppFTP in Notepad++ 8.4. (I've only tried .php files) ### Steps to Reproduce the Issue Open...
Good day, Seems like I found another generics bug: ``` Framework BRL.Blitz Import BRL.StandardIO 'Switch these Import "Import2.bmx" Import "Import1.bmx" TFoo.map["test"] = "test" TBar.map["test"] = "test" For Local key:String =...
Good day, Would it be possible for EachIn to be able to convert objects from generics types when possible such as the code below? ``` Framework BRL.Blitz Import BRL.Collections Import...
Good day, Thanks for all the updates lately! Greatly appreciated. Here's another bug I've found: **Test.bmx** ``` Framework BRL.Blitz Import BRL.Collections Import BRL.StandardIO 'Import "Bar.bmx" Include "Bar.bmx" Include "TreeMap2D.bmx" New...
Good day, Using the following code will cause a lot of compilation errors. test.mod/generics.mod/generics.bmx ``` SuperStrict Module Test.Generics Framework BRL.Blitz Import BRL.Collections Type TTempMap Field map:TTreeMap = New TTreeMap() EndType...
Good day, Seems using Object as an argument for a generic type can cause compilation issues. ``` Framework BRL.Blitz Import BRL.Collections Local list:TLinkedList = New TLinkedList() list.AddLast("test") ``` Thanks!
Hey, Seems like "self increment" i.e. var :+ 1 for instance isn't working properly with generics. Switch the commented line with the one beneath it and you'll see the issue...
Good day, The following module will not compile: ``` SuperStrict Module Test.Test Framework BRL.Blitz Import Text.Encoding Type TFoo Method New(test:String, e:EStreamEncoding=Null) EndMethod EndType Type TBar Extends TFoo EndType ``` "Unable...
Hey, I'm not sure this is at all possible, but it would be nice to be able to overload generic types with a different number of arguments: ``` Framework BRL.Blitz...
The following code produces an error in the C code: ``` Framework BRL.StandardIO Function Foo() Exit EndFunction Repeat Foo() Forever ```