Ronny Otto

Results 171 issues of Ronny Otto

When using multi-line strings potential errors (after the multi-line definition) are incorrectly offset by "multi-line line count - 1" . ```BlitzMax SuperStrict Framework Brl.StandardIO Local multiLine:String = """ hello world...

When marking a function as `inline` you cannot use a string in there as the generated code forgets to emit the string to the ".h"-file: Example: ```Blitzmax SuperStrict Framework Brl.StandardIO...

"print" is incorrect but not caught as error messages in the bmk files are ignored there. Also the "opts" replaced stuff in "cc_opts" incorrectly. While ":find()" can return Null, ":gsub"...

"print" is incorrect but not caught as error messages in the bmk files are ignored there. I used the chance to bring both ifs "together".

Heya, (I tried to find if someone already answered my question, but the only "well fitting" issue was closed (without solution).) I want to connect to a Jetson (Xavier) running...

"Enums" are ... kind of "case-insensitive-sensitive". ```BlitzMax SuperStrict Framework Brl.StandardIO Enum EDay Sunday, Monday, Tuesday, Wednesday, Thursday, Friday, Saturday End Enum Local day:EDay = EDay.FromString("Monday") 'nothing implemented Print "sunday: "...

The following code generates invalid C Code: ```BlitzMax SuperStrict Framework Brl.StandardIO Interface ISerialize Method Serialize:Object(context:TSerializationContext) Method Deserialize(context:TSerializationContext, data:Object) End Interface Type TSerializationContext End Type Type TBase Implements ISerialize Field i1:Int...

``` SuperStrict Framework Brl.StandardIO Type TTest Method GetChannelReachLevel:Int() Return 0 End Method Method GetPriceForPlayer:Int(playerID:Int, audienceReachLevel:Int = -1) Return 0 End Method End Type Local t:TTest = New TTest Print t.GetPriceForPlayer(1,...

Reduces object allocations during DB loading (with current DB files) from ~25.000.000 to ~10.700.000 objects. Loading DB time (on my machine) reduced from 2850ms to 1700ms.