1
0
mirror of https://github.com/robertkrimen/otto synced 2025-10-26 20:28:49 +08:00

Add Math.asin

This commit is contained in:
Robert Krimen
2013-02-22 20:04:47 -08:00
parent db71564bb4
commit 0b44f24f33
3 changed files with 19 additions and 0 deletions

View File

@@ -311,6 +311,7 @@ func newContext() *_runtime {
self.Global.Math = self.newGlobalObject(
"Math",
"acos", 1, builtinMath_acos,
"asin", 1, builtinMath_asin,
"ceil", 1, builtinMath_ceil,
"exp", 1, builtinMath_exp,
"floor", 1, builtinMath_floor,