forked from robertkrimen/otto
-
Notifications
You must be signed in to change notification settings - Fork 0
/
builtin_math.go
151 lines (131 loc) · 3.4 KB
/
builtin_math.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
package otto
import (
"math"
"math/rand"
)
// Math
func builtinMathAbs(call FunctionCall) Value {
number := call.Argument(0).float64()
return float64Value(math.Abs(number))
}
func builtinMathAcos(call FunctionCall) Value {
number := call.Argument(0).float64()
return float64Value(math.Acos(number))
}
func builtinMathAsin(call FunctionCall) Value {
number := call.Argument(0).float64()
return float64Value(math.Asin(number))
}
func builtinMathAtan(call FunctionCall) Value {
number := call.Argument(0).float64()
return float64Value(math.Atan(number))
}
func builtinMathAtan2(call FunctionCall) Value {
y := call.Argument(0).float64()
if math.IsNaN(y) {
return NaNValue()
}
x := call.Argument(1).float64()
if math.IsNaN(x) {
return NaNValue()
}
return float64Value(math.Atan2(y, x))
}
func builtinMathCos(call FunctionCall) Value {
number := call.Argument(0).float64()
return float64Value(math.Cos(number))
}
func builtinMathCeil(call FunctionCall) Value {
number := call.Argument(0).float64()
return float64Value(math.Ceil(number))
}
func builtinMathExp(call FunctionCall) Value {
number := call.Argument(0).float64()
return float64Value(math.Exp(number))
}
func builtinMathFloor(call FunctionCall) Value {
number := call.Argument(0).float64()
return float64Value(math.Floor(number))
}
func builtinMathLog(call FunctionCall) Value {
number := call.Argument(0).float64()
return float64Value(math.Log(number))
}
func builtinMathMax(call FunctionCall) Value {
switch len(call.ArgumentList) {
case 0:
return negativeInfinityValue()
case 1:
return float64Value(call.ArgumentList[0].float64())
}
result := call.ArgumentList[0].float64()
if math.IsNaN(result) {
return NaNValue()
}
for _, value := range call.ArgumentList[1:] {
value := value.float64()
if math.IsNaN(value) {
return NaNValue()
}
result = math.Max(result, value)
}
return float64Value(result)
}
func builtinMathMin(call FunctionCall) Value {
switch len(call.ArgumentList) {
case 0:
return positiveInfinityValue()
case 1:
return float64Value(call.ArgumentList[0].float64())
}
result := call.ArgumentList[0].float64()
if math.IsNaN(result) {
return NaNValue()
}
for _, value := range call.ArgumentList[1:] {
value := value.float64()
if math.IsNaN(value) {
return NaNValue()
}
result = math.Min(result, value)
}
return float64Value(result)
}
func builtinMathPow(call FunctionCall) Value {
// TODO Make sure this works according to the specification (15.8.2.13)
x := call.Argument(0).float64()
y := call.Argument(1).float64()
if math.Abs(x) == 1 && math.IsInf(y, 0) {
return NaNValue()
}
return float64Value(math.Pow(x, y))
}
func builtinMathRandom(call FunctionCall) Value {
var v float64
if call.runtime.random != nil {
v = call.runtime.random()
} else {
v = rand.Float64() //nolint: gosec
}
return float64Value(v)
}
func builtinMathRound(call FunctionCall) Value {
number := call.Argument(0).float64()
value := math.Floor(number + 0.5)
if value == 0 {
value = math.Copysign(0, number)
}
return float64Value(value)
}
func builtinMathSin(call FunctionCall) Value {
number := call.Argument(0).float64()
return float64Value(math.Sin(number))
}
func builtinMathSqrt(call FunctionCall) Value {
number := call.Argument(0).float64()
return float64Value(math.Sqrt(number))
}
func builtinMathTan(call FunctionCall) Value {
number := call.Argument(0).float64()
return float64Value(math.Tan(number))
}