This commit is contained in:
Nick Guerrera 2021-04-24 16:52:17 -07:00
Родитель a60e5c2096
Коммит df4b13e4c7
1 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -757,7 +757,7 @@ export function parse(code: string | SourceFile) {
function parseBooleanLiteral(): BooleanLiteralNode {
const pos = tokenPos();
const token = parseExpectedOneOf(Token.TrueKeyword, Token.FalseKeyword);
const value = token == Token.TrueKeyword;
const value = token === Token.TrueKeyword;
return finishNode(
{
kind: SyntaxKind.BooleanLiteral,
@ -931,7 +931,7 @@ export function parse(code: string | SourceFile) {
* open token is present. Otherwise, return an empty list.
*/
function parseOptionalList<T>(kind: SurroundedListKind, parseItem: ParseListItem<T>): T[] {
return token() == kind.open ? parseList(kind, parseItem) : [];
return token() === kind.open ? parseList(kind, parseItem) : [];
}
function parseOptionalDelimiter(kind: ListKind) {