Explicitly type 'bind' as being a void function.

This commit is contained in:
Cyrus Najmabadi 2015-04-19 15:55:21 -07:00
parent e7ddba508a
commit b75fda1052

View File

@ -478,7 +478,7 @@ module ts {
return "__" + indexOf((<SignatureDeclaration>node.parent).parameters, node);
}
function bind(node: Node) {
function bind(node: Node): void {
node.parent = parent;
switch (node.kind) {