Skip to content

Commit

Permalink
Fix linter errors
Browse files Browse the repository at this point in the history
  • Loading branch information
TimvdLippe committed Feb 25, 2018
1 parent 57a1423 commit d8cf449
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
10 changes: 5 additions & 5 deletions lib/utils/binding-parser.html
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@
VARIABLEARG: 13,
METHODCLOSED: 14,
METHODCLOSEDBINDING: 15
}
};

function pushLiteral(text, i, parts, startChar) {
const literal = text.substring(startChar || 0, i);
Expand Down Expand Up @@ -83,7 +83,7 @@
} else {
const arg = {
name
}
};
arg.structured = Polymer.Path.isPath(name);
if (arg.structured) {
arg.wildcard = (name.slice(-2) == '.*');
Expand All @@ -92,7 +92,7 @@
}
}
bindingData.signature.args.push(arg);
bindingData.dependencies.push(name)
bindingData.dependencies.push(name);
bindingData.signature.static = false;
}
}
Expand Down Expand Up @@ -284,7 +284,7 @@
break;
}
case ',': {
storeMethodVariable(bindingData, text, i)
storeMethodVariable(bindingData, text, i);
bindingData.startChar = i + 1;
break;
}
Expand Down Expand Up @@ -396,7 +396,7 @@

return null;
}
}
};
});

Polymer.BindingParser = BindingParser;
Expand Down
2 changes: 1 addition & 1 deletion test/unit/property-effects.html
Original file line number Diff line number Diff line change
Expand Up @@ -458,7 +458,7 @@
// t.title is the name of the test and t.fn contains the test body
this.parent.parent.tests.forEach(t => {
test(t.title, t.fn);
});;
});
});
});
});
Expand Down

0 comments on commit d8cf449

Please sign in to comment.