fix(providers): make providers static analysis friendly

This commit is contained in:
Rob Wormald
2016-06-14 15:20:43 -07:00
committed by vsavkin
parent 127401598b
commit 15f27b5455
2 changed files with 50 additions and 44 deletions

View File

@ -195,7 +195,7 @@ function prefixedWith(segment: UrlSegment, startIndex: number, commands: any[])
currentPathIndex++;
}
return { match: true, lastIndex: currentCommandIndex };
return {match: true, lastIndex: currentCommandIndex};
}
function createNewSegment(segment: UrlSegment, startIndex: number, commands: any[]): UrlSegment {