| Index: runtime/lib/math_patch.dart
|
| diff --git a/runtime/lib/math_patch.dart b/runtime/lib/math_patch.dart
|
| index c308ec3a0083ffda0242cac7a08c0478e64f83b5..5a2b6308b5eb6ff66ee78fcbe42536f04624ef38 100644
|
| --- a/runtime/lib/math_patch.dart
|
| +++ b/runtime/lib/math_patch.dart
|
| @@ -3,8 +3,6 @@
|
| // BSD-style license that can be found in the LICENSE file.
|
|
|
| // A VM patch of the dart:math library.
|
| -patch int parseInt(String str) => MathNatives.parseInt(str);
|
| -patch double parseDouble(String str) => MathNatives.parseDouble(str);
|
| patch num pow(num x, num exponent) => MathNatives.pow(x, exponent);
|
| patch double atan2(num a, num b) => MathNatives.atan2(a, b);
|
| patch double sin(num x) => MathNatives.sin(x);
|
|
|