Files
babel/packages/babel-plugin-transform-parameters/test/fixtures/parameters/default-iife-self/input.js
2018-01-09 15:36:42 +01:00

12 lines
121 B
JavaScript

class Ref {
constructor(ref = Ref) {
this.ref = ref
}
}
class X {
constructor(x = foo) {
this.x = x
}
}