intMax, Min 수정
This commit is contained in:
parent
bd72b45675
commit
6fdb73ba62
1 changed files with 2 additions and 7 deletions
|
|
@ -39,13 +39,8 @@ void initialize(String name, String appID) {
|
|||
isWeb = false; // 예외 발생 시 네이티브 환경
|
||||
}
|
||||
|
||||
if (isWeb) {
|
||||
intMax = 9007199254740991;
|
||||
intMin = -9007199254740991;
|
||||
} else {
|
||||
intMax = 9223372036854775807;
|
||||
intMin = -9223372036854775807;
|
||||
}
|
||||
intMax = (1 << ((-1).bitLength - 1)) - 1;
|
||||
intMin = -intMax;
|
||||
}
|
||||
|
||||
Map<String, List<String>?> envArguments(List<String> arguments) {
|
||||
|
|
|
|||
Loading…
Reference in a new issue