标签: angular typescript google-chrome-devtools babeljs transpiler
我有一个有角度的2服务,我有这条线:
transformedObjects.push(new MyObject(myObject.x, myObject._id));
当我在Chrome开发工具中使用调试器并按照该过程时,我会看到此行
transformedObjects.push(new myObject_model_1.MyObject(myObject.y, myObject._id));
为什么我有不同之处: myObject.x 和 myObject.y ?