const code = ` class Man { constructor(n) { this.name = n; } sayName() { return this.name } } `;