Index: src/compiler/operation-typer.h |
diff --git a/src/compiler/operation-typer.h b/src/compiler/operation-typer.h |
index aa669acdec49e30645622ceb7610549ba4827609..b37360a8c4e987d891affe32dae11e3332baab62 100644 |
--- a/src/compiler/operation-typer.h |
+++ b/src/compiler/operation-typer.h |
@@ -32,11 +32,13 @@ class OperationTyper { |
Type* ToNumber(Type* type); |
Type* WeakenRange(Type* current_range, Type* previous_range); |
- Type* NumericAdd(Type* lhs, Type* rhs); |
- Type* NumericSubtract(Type* lhs, Type* rhs); |
- Type* NumericMultiply(Type* lhs, Type* rhs); |
- Type* NumericDivide(Type* lhs, Type* rhs); |
- Type* NumericModulus(Type* lhs, Type* rhs); |
+ Type* NumberAdd(Type* lhs, Type* rhs); |
+ Type* NumberSubtract(Type* lhs, Type* rhs); |
+ Type* NumberMultiply(Type* lhs, Type* rhs); |
+ Type* NumberDivide(Type* lhs, Type* rhs); |
+ Type* NumberModulus(Type* lhs, Type* rhs); |
+ |
+ Type* NumberAbs(Type* type); |
enum ComparisonOutcomeFlags { |
kComparisonTrue = 1, |