diff --git a/lib/utils/binding-parser.html b/lib/utils/binding-parser.html
index 0e614d6a2b..6bff5f35dd 100644
--- a/lib/utils/binding-parser.html
+++ b/lib/utils/binding-parser.html
@@ -44,7 +44,7 @@
VARIABLEARG: 13,
METHODCLOSED: 14,
METHODCLOSEDBINDING: 15
- }
+ };
function pushLiteral(text, i, parts, startChar) {
const literal = text.substring(startChar || 0, i);
@@ -83,7 +83,7 @@
} else {
const arg = {
name
- }
+ };
arg.structured = Polymer.Path.isPath(name);
if (arg.structured) {
arg.wildcard = (name.slice(-2) == '.*');
@@ -92,7 +92,7 @@
}
}
bindingData.signature.args.push(arg);
- bindingData.dependencies.push(name)
+ bindingData.dependencies.push(name);
bindingData.signature.static = false;
}
}
@@ -284,7 +284,7 @@
break;
}
case ',': {
- storeMethodVariable(bindingData, text, i)
+ storeMethodVariable(bindingData, text, i);
bindingData.startChar = i + 1;
break;
}
@@ -396,7 +396,7 @@
return null;
}
- }
+ };
});
Polymer.BindingParser = BindingParser;
diff --git a/test/unit/property-effects.html b/test/unit/property-effects.html
index 40f93aa5c0..2a567e335c 100644
--- a/test/unit/property-effects.html
+++ b/test/unit/property-effects.html
@@ -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);
- });;
+ });
});
});
});