From cddff912d538e95c807a4de6ce5c251cd37fcfa6 Mon Sep 17 00:00:00 2001 From: Ryan Cavanaugh Date: Wed, 13 Jun 2018 10:44:13 -0700 Subject: [PATCH] Add internal where needed --- src/compiler/utilities.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/compiler/utilities.ts b/src/compiler/utilities.ts index 83e56d81631..1f63bade114 100644 --- a/src/compiler/utilities.ts +++ b/src/compiler/utilities.ts @@ -5037,6 +5037,7 @@ namespace ts { } // Simple node tests of the form `node.kind === SyntaxKind.Foo`. +/* @internal */ namespace ts { // Literals export function isNumericLiteral(node: Node): node is NumericLiteral { @@ -5738,6 +5739,7 @@ namespace ts { // // All node tests in the following list should *not* reference parent pointers so that // they may be used with transformations. +/* @internal */ namespace ts { /* @internal */ export function isSyntaxList(n: Node): n is SyntaxList {