escover 6.5.1 → 6.5.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/ChangeLog +5 -0
- package/lib/instrument/plugin-mark/index.js +0 -8
- package/package.json +1 -1
package/ChangeLog
CHANGED
|
@@ -122,8 +122,6 @@ export const fix = (path, {options}) => {
|
|
|
122
122
|
|
|
123
123
|
return;
|
|
124
124
|
}
|
|
125
|
-
|
|
126
|
-
replaceWith(path, blockStatement([node]));
|
|
127
125
|
};
|
|
128
126
|
|
|
129
127
|
const EXCLUDE = [
|
|
@@ -210,12 +208,6 @@ export const traverse = ({push}) => ({
|
|
|
210
208
|
push(expPath);
|
|
211
209
|
}
|
|
212
210
|
},
|
|
213
|
-
UpdateExpression(path) {
|
|
214
|
-
if (compare(path, `(${LINE}, __z)`))
|
|
215
|
-
return;
|
|
216
|
-
|
|
217
|
-
push(path);
|
|
218
|
-
},
|
|
219
211
|
'IfStatement|ConditionalExpression'(path) {
|
|
220
212
|
const consequentPath = path.get('consequent');
|
|
221
213
|
const alternatePath = path.get('alternate');
|
package/package.json
CHANGED