mirror of
https://github.com/fluencelabs/wasm-bindgen
synced 2025-04-03 10:51:09 +00:00
Merge pull request #92 from ashleygwilliams/node-modules
feat(node): support node enums
This commit is contained in:
commit
31107db86d
@ -1565,9 +1565,21 @@ impl<'a, 'b> SubContext<'a, 'b> {
|
|||||||
for variant in enum_.variants.iter() {
|
for variant in enum_.variants.iter() {
|
||||||
variants.push_str(&format!("{}:{},", variant.name, variant.value));
|
variants.push_str(&format!("{}:{},", variant.name, variant.value));
|
||||||
}
|
}
|
||||||
self.cx.globals.push_str(&format!("export const {} = {{", enum_.name));
|
let global_export = if self.cx.config.nodejs {
|
||||||
self.cx.globals.push_str(&variants);
|
let mut enum_string = format!("const {} = Object.freeze({{", enum_.name);
|
||||||
self.cx.globals.push_str("}\n");
|
enum_string.push_str(&variants);
|
||||||
|
enum_string.push_str("})\n");
|
||||||
|
let export = format!("module.exports.{} = {};\n", enum_.name, enum_.name);
|
||||||
|
enum_string.push_str(&export);
|
||||||
|
enum_string
|
||||||
|
} else {
|
||||||
|
let mut enum_string = format!("export const {} = {{", enum_.name);
|
||||||
|
enum_string.push_str(&variants);
|
||||||
|
enum_string.push_str("}\n");
|
||||||
|
enum_string
|
||||||
|
};
|
||||||
|
self.cx.globals.push_str(&global_export);
|
||||||
|
|
||||||
self.cx.typescript.push_str(&format!("export enum {} {{", enum_.name));
|
self.cx.typescript.push_str(&format!("export enum {} {{", enum_.name));
|
||||||
|
|
||||||
variants.clear();
|
variants.clear();
|
||||||
|
@ -39,6 +39,21 @@ fn works() {
|
|||||||
self.contents
|
self.contents
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#[wasm_bindgen]
|
||||||
|
pub enum Color {
|
||||||
|
Green,
|
||||||
|
Yellow,
|
||||||
|
Red,
|
||||||
|
}
|
||||||
|
#[wasm_bindgen]
|
||||||
|
pub fn cycle(color: Color) -> Color {
|
||||||
|
match color {
|
||||||
|
Color::Green => Color::Yellow,
|
||||||
|
Color::Yellow => Color::Red,
|
||||||
|
Color::Red => Color::Green,
|
||||||
|
}
|
||||||
|
}
|
||||||
"#)
|
"#)
|
||||||
.file("test.js", r#"
|
.file("test.js", r#"
|
||||||
const assert = require('assert');
|
const assert = require('assert');
|
||||||
@ -68,6 +83,14 @@ fn works() {
|
|||||||
assert.strictEqual(r2.add(1), 1);
|
assert.strictEqual(r2.add(1), 1);
|
||||||
assert.strictEqual(r2.add(2), 2);
|
assert.strictEqual(r2.add(2), 2);
|
||||||
r2.free();
|
r2.free();
|
||||||
|
|
||||||
|
var Color = run.Color;
|
||||||
|
|
||||||
|
assert.strictEqual(Color.Green, 0);
|
||||||
|
assert.strictEqual(Color.Yellow, 1);
|
||||||
|
assert.strictEqual(Color.Red, 2);
|
||||||
|
assert.strictEqual(Object.keys(Color).length, 3);
|
||||||
|
assert.strictEqual(Color.cycle(Color.Green), Color.Yellow);
|
||||||
};
|
};
|
||||||
|
|
||||||
"#)
|
"#)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user