michaelstephendavies

Results 2 issues of michaelstephendavies

### Steps to reproduce Start here: https://codesandbox.io/s/vue-material-quick-start-forked-wickm?file=/App.vue * When clicking on empty space, the click handler on the `document` correctly receives an event and the counter is incremented. * When...

I expected this to work: ``` ::x = 5; fn addToX(x) { return ::x + x; } ::console.log(addToX(2)); // 7 ``` However it compiles to (with ES6 target): ``` js...

bug