From df3630b92c7975c59a358db279e6d0dc6a73bc86 Mon Sep 17 00:00:00 2001 From: Arthur Ozga Date: Mon, 1 May 2017 16:37:18 -0700 Subject: [PATCH] reorder enum --- src/compiler/types.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/compiler/types.ts b/src/compiler/types.ts index 55b7222796d..729fc7ab57c 100644 --- a/src/compiler/types.ts +++ b/src/compiler/types.ts @@ -2411,9 +2411,9 @@ namespace ts { /* @internal */ export const enum StructureIsReused { - Completely, - SafeModules, - Not + Not = 0, + SafeModules = 1 << 0, + Completely = 1 << 1, } export interface CustomTransformers {