| OLD | NEW |
| 1 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file |
| 2 // for details. All rights reserved. Use of this source code is governed by a | 2 // for details. All rights reserved. Use of this source code is governed by a |
| 3 // BSD-style license that can be found in the LICENSE file. | 3 // BSD-style license that can be found in the LICENSE file. |
| 4 | 4 |
| 5 #include <math.h> | 5 #include <math.h> |
| 6 | 6 |
| 7 #include "vm/bootstrap_natives.h" | 7 #include "vm/bootstrap_natives.h" |
| 8 | 8 |
| 9 #include "vm/bigint_operations.h" | 9 #include "vm/bigint_operations.h" |
| 10 #include "vm/double_conversion.h" | 10 #include "vm/double_conversion.h" |
| (...skipping 227 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 238 if (signbit(arg.value()) && !isnan(arg.value())) { | 238 if (signbit(arg.value()) && !isnan(arg.value())) { |
| 239 arguments->SetReturn(Bool::Handle(Bool::True())); | 239 arguments->SetReturn(Bool::Handle(Bool::True())); |
| 240 } else { | 240 } else { |
| 241 arguments->SetReturn(Bool::Handle(Bool::False())); | 241 arguments->SetReturn(Bool::Handle(Bool::False())); |
| 242 } | 242 } |
| 243 } | 243 } |
| 244 | 244 |
| 245 // Add here only functions using/referring to old-style casts. | 245 // Add here only functions using/referring to old-style casts. |
| 246 | 246 |
| 247 } // namespace dart | 247 } // namespace dart |
| 248 | |
| OLD | NEW |