Files
babel/packages/babel-plugin-transform-parameters/test/fixtures/parameters/flow-this-param/input.js
2021-02-21 17:44:27 +01:00

4 lines
87 B
JavaScript

function foo (this : number, x : number, y : string, ...z : any) {
x + y + z[0];
}