typescript2java icon indicating copy to clipboard operation
typescript2java copied to clipboard

Number as return type is not working

Open slavap opened this issue 7 years ago • 0 comments

Example:

totalSeconds(): number

generates:

public native Number totalSeconds();

which is failing with exception in runtime. The proper working version must be:

public native double totalSeconds();

So the point is that though this "hack"

(@DoNotAutobox Number totalSeconds)

is working for method's input parameters, it's wrong to use Number for returning value.

slavap avatar Jan 27 '18 01:01 slavap