I run into this problem after upgrading from Lighncandy.
If a float value is passed in data, it is converted to int since the float type is missing in the type declaration of the Runtime::raw method. As result, 1.5 will be printed as 1.
Adding float to the union type declaration solves the problem.
I run into this problem after upgrading from Lighncandy.
If a float value is passed in data, it is converted to int since the float type is missing in the type declaration of the
Runtime::rawmethod. As result,1.5will be printed as1.Adding
floatto the union type declaration solves the problem.