From 9b70f14a1c81207996c34cf1e27f3686a05e43b9 Mon Sep 17 00:00:00 2001 From: Jonathan Sundqvist Date: Mon, 25 Jun 2018 22:41:22 +0200 Subject: [PATCH] Add ceil to Math --- src/js.rs | 6 ++++++ tests/all/js_globals/Math.rs | 27 +++++++++++++++++++++++++++ 2 files changed, 33 insertions(+) diff --git a/src/js.rs b/src/js.rs index 7dfd72a92..3221ebad5 100644 --- a/src/js.rs +++ b/src/js.rs @@ -302,6 +302,12 @@ extern { #[wasm_bindgen(static_method_of = Math)] pub fn cbrt(x: i32) -> Number; + /// The Math.ceil() function returns the smallest integer greater than + /// or equal to a given number. + /// + /// https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Math/ceil + #[wasm_bindgen(static_method_of = Math)] + pub fn ceil(x: f32) -> Number; } // Number. diff --git a/tests/all/js_globals/Math.rs b/tests/all/js_globals/Math.rs index fe55ac40b..a69077046 100644 --- a/tests/all/js_globals/Math.rs +++ b/tests/all/js_globals/Math.rs @@ -238,3 +238,30 @@ fn cbrt() { "#) .test() } + +#[test] +fn ceil() { + project() + .file("src/lib.rs", r#" + #![feature(proc_macro, wasm_custom_section)] + + extern crate wasm_bindgen; + use wasm_bindgen::prelude::*; + use wasm_bindgen::js; + + #[wasm_bindgen] + pub fn ceil(x: f32) -> js::Number { + js::Math::ceil(x) + } + "#) + .file("test.ts", r#" + import * as assert from "assert"; + import * as wasm from "./out"; + + export function test() { + assert.equal(wasm.ceil(1.1), 2); + assert.equal(wasm.ceil(-1.1), -1); + } + "#) + .test() +}