@@ -1140,7 +1140,7 @@ type TypeCheckInfo
11401140 items
11411141
11421142
1143- // static let keywordTypes = Lexhelp.Keywords.keywordTypes
1143+ static let keywordTypes = Lexhelp.Keywords.keywordTypes
11441144
11451145member x.IsRelativeNameResolvable ( cursorPos : pos , plid : string list , item : Item ) : bool =
11461146/// Determines if a long ident is resolvable at a specific point.
@@ -1483,8 +1483,8 @@ type TypeCheckInfo
14831483| CNR(_, ( Item.CustomBuilder_ | Item.CustomOperation_), ItemOccurence.Use, _, _, _, m) ->
14841484 Some( m, SemanticClassificationType.ComputationExpression)
14851485// well known type aliases get colored as keywords
1486- // | CNR(_, (Item.Types (n, _)), _, _, _, _, m) when keywordTypes.Contains(n) ->
1487- // Some (m, SemanticClassificationType.IntrinsicType)
1486+ | CNR(_, ( Item.Types( n, _)), _, _, _, _, m) when keywordTypes.Contains( n) ->
1487+ Some( m, SemanticClassificationType.IntrinsicType)
14881488// types get colored as types when they occur in syntactic types or custom attributes
14891489// typevariables get colored as types when they occur in syntactic types custom builders, custom operations get colored as keywords
14901490| CNR(_, Item.Types(_, [ OptionalArgumentAttribute]), LegitTypeOccurence, _, _, _, _) -> None