specific type for function param

This commit is contained in:
Chris Bubernak 2014-10-03 18:58:50 -07:00
parent e6b5591ae9
commit a500ac2266

View File

@ -5100,7 +5100,7 @@ module ts {
}
// if a user tries to apply an innappropriate operator to 2 boolean operands try and return them a helpful suggestion
function getSuggestedBooleanOperator(operator: any): SyntaxKind {
function getSuggestedBooleanOperator(operator: SyntaxKind): SyntaxKind {
switch (operator) {
case SyntaxKind.BarToken:
case SyntaxKind.BarEqualsToken: