CR feedback.

This commit is contained in:
Cyrus Najmabadi
2015-02-20 11:25:42 -08:00
parent 33e1e5d905
commit 49c78968a3
2 changed files with 4 additions and 4 deletions

View File

@@ -1646,7 +1646,7 @@ module ts {
equals = 0x3D, // =
exclamation = 0x21, // !
greaterThan = 0x3E, // >
hash = 0x23,
hash = 0x23, // #
lessThan = 0x3C, // <
minus = 0x2D, // -
openBrace = 0x7B, // {

View File

@@ -19,12 +19,12 @@ module ts {
camelCaseWeight: number;
// If this was a match where all consituent parts of the candidate and search pattern
// matched cast sensitively or case insensitively. Case sensitive matches of the kind
// matched case sensitively or case insensitively. Case sensitive matches of the kind
// are better matches than insensitive matches.
isCaseSensitive: boolean;
// Whether or not this match occured with the punctuation from the search pattern stripped
// out or not. Matched without the punctuation stripped are better than ones with punctuation
// out or not. Matches without the punctuation stripped are better than ones with punctuation
// stripped.
punctuationStripped: boolean;
}
@@ -34,7 +34,7 @@ module ts {
// once you no longer need it.
export interface PatternMatcher {
// Used to match a candidate against the last segment of a possibly dotted pattern. This
// is useful as a quick check to preven having to compute a container before calling
// is useful as a quick check to prevent having to compute a container before calling
// "getMatches".
//
// For example, if the search pattern is "ts.c.SK" and the candidate is "SyntaxKind", then