Files
babel/packages/babel-parser/test/fixtures/flow/this-annotation/function-declaration/input.js
2021-02-21 17:44:27 +01:00

8 lines
150 B
JavaScript

function foo (this : number, a : string, b) {}
function bar (this : number) {}
function baz (this : number, ...a) {}
function qux<T> (this : T) {}