Commit d0f0bd05 authored by yann300's avatar yann300

remove jump check

parent 2ec51c3b
...@@ -92,8 +92,7 @@ async function buildTree (tree, step, scopeId) { ...@@ -92,8 +92,7 @@ async function buildTree (tree, step, scopeId) {
var sourceLocation var sourceLocation
try { try {
sourceLocation = await extractSourceLocation(tree, step) sourceLocation = await extractSourceLocation(tree, step)
if (sourceLocation.jump !== currentSourceLocation.jump || if (sourceLocation.start !== currentSourceLocation.start ||
sourceLocation.start !== currentSourceLocation.start ||
sourceLocation.length !== currentSourceLocation.length || sourceLocation.length !== currentSourceLocation.length ||
sourceLocation.file !== currentSourceLocation.file) { sourceLocation.file !== currentSourceLocation.file) {
tree.reducedTrace.push(step) tree.reducedTrace.push(step)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment