mirror of
https://github.com/rustwasm/wasm-bindgen.git
synced 2024-11-24 06:33:33 +03:00
18 lines
279 B
JavaScript
18 lines
279 B
JavaScript
const assert = require('assert');
|
|
|
|
let next = null;
|
|
|
|
exports.assert_next_undefined = function() {
|
|
next = undefined;
|
|
};
|
|
|
|
exports.assert_next_ten = function() {
|
|
next = 10;
|
|
};
|
|
|
|
exports.foo = function(a) {
|
|
console.log(a, next);
|
|
assert.strictEqual(a, next);
|
|
next = null;
|
|
};
|