Fixed misleading comment

As per Cyrus's comment in #173.
This commit is contained in:
Daniel Rosenwasser 2014-07-21 23:42:23 -07:00
parent 9bb17a66cd
commit f37cf1647d

View File

@ -766,7 +766,7 @@ module ts {
return false;
}
// Parses a semicolon-delimited list of elements
// Parses a list of elements
function parseList<T extends Node>(kind: ParsingContext, parseElement: () => T): NodeArray<T> {
var saveParsingContext = parsingContext;
parsingContext |= 1 << kind;