Previously in #62. > ```js > class Dog { > constructor(leash) { > } > }; > > let d = new Dog(); > ``` > Produces: > ``` > function (anonymous) expected 1 argument but received 0 arguments at Line 2: in Dog > ... : in handleNew > ... > ``` > The handleNew bit is an internal (Stopify) leaking through.
Previously in #62.