mirror of
https://github.com/fluencelabs/assemblyscript
synced 2025-06-20 18:26:40 +00:00
Revised implicit type conversions; Initial function expression compilation
This commit is contained in:
@ -133,10 +133,10 @@ declare function isize(value: void): isize;
|
||||
namespace isize {
|
||||
export const MIN_VALUE: isize = sizeof<i32>() == sizeof<isize>()
|
||||
? -2147483648
|
||||
: <usize>-9223372036854775808;
|
||||
: <isize>-9223372036854775808;
|
||||
export const MAX_VALUE: isize = sizeof<i32>() == sizeof<isize>()
|
||||
? 2147483647
|
||||
: <usize>9223372036854775807;
|
||||
: <isize>9223372036854775807;
|
||||
}
|
||||
export { isize };
|
||||
|
||||
|
Reference in New Issue
Block a user