Skip to content

Commit d8cf449

Browse files
committed
Fix linter errors
1 parent 57a1423 commit d8cf449

2 files changed

Lines changed: 6 additions & 6 deletions

File tree

lib/utils/binding-parser.html

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@
4444
VARIABLEARG: 13,
4545
METHODCLOSED: 14,
4646
METHODCLOSEDBINDING: 15
47-
}
47+
};
4848

4949
function pushLiteral(text, i, parts, startChar) {
5050
const literal = text.substring(startChar || 0, i);
@@ -83,7 +83,7 @@
8383
} else {
8484
const arg = {
8585
name
86-
}
86+
};
8787
arg.structured = Polymer.Path.isPath(name);
8888
if (arg.structured) {
8989
arg.wildcard = (name.slice(-2) == '.*');
@@ -92,7 +92,7 @@
9292
}
9393
}
9494
bindingData.signature.args.push(arg);
95-
bindingData.dependencies.push(name)
95+
bindingData.dependencies.push(name);
9696
bindingData.signature.static = false;
9797
}
9898
}
@@ -284,7 +284,7 @@
284284
break;
285285
}
286286
case ',': {
287-
storeMethodVariable(bindingData, text, i)
287+
storeMethodVariable(bindingData, text, i);
288288
bindingData.startChar = i + 1;
289289
break;
290290
}
@@ -396,7 +396,7 @@
396396

397397
return null;
398398
}
399-
}
399+
};
400400
});
401401

402402
Polymer.BindingParser = BindingParser;

test/unit/property-effects.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -458,7 +458,7 @@
458458
// t.title is the name of the test and t.fn contains the test body
459459
this.parent.parent.tests.forEach(t => {
460460
test(t.title, t.fn);
461-
});;
461+
});
462462
});
463463
});
464464
});

0 commit comments

Comments
 (0)