这行代码在收集中依赖什么?为什么感觉不完整?

作者: horseson2018创建于 2020年6月29日更新于 2023年11月22日
javascript
class Vue {
    constructor(options) {
        this._data = options.data;
        observer(this._data, options.render);
        let watcher = new Watcher(this,); // 这个括号是不是写完了

内容来源: answershuto/learnVue