Add a smorgasboard example

This commit is contained in:
Alex Crichton
2018-03-02 20:19:39 -08:00
parent 4aa6793b9e
commit 4ebb3df330
14 changed files with 213 additions and 1 deletions

View File

@ -0,0 +1,14 @@
export function bar_on_reset(s, token) {
console.log(token);
console.log(`this instance of bar was reset to ${s}`);
}
export class Awesome {
constructor() {
this.internal = 32;
}
get_internal() {
return this.internal;
}
}