Skip to content

Commit a23bc99

Browse files
author
giovannipessiva
committed
Fix Quick Outline regression
1 parent f427974 commit a23bc99

File tree

1 file changed

+11
-2
lines changed

1 file changed

+11
-2
lines changed

com.palantir.typescript/src/com/palantir/typescript/services/language/ScriptElementKind.java

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,9 @@ public enum ScriptElementKind {
5353
// enum E
5454
ENUM_ELEMENT("enum"),
5555

56+
// enum member
57+
ENUM_MEMBER("enum member"),
58+
5659
// Inside module and script only
5760
// var v(..
5861
VARIABLE_ELEMENT("var"),
@@ -103,8 +106,14 @@ public enum ScriptElementKind {
103106

104107
CONST_ELEMENT("const"),
105108

106-
LET_ELEMENT("let");
107-
109+
LET_ELEMENT("let"),
110+
111+
DIRECTORY("directory"),
112+
113+
EXTERNAL_MODULE_NAME("external module name"),
114+
115+
JSX_ATTRIBUTE("JSX attribute");
116+
108117
private final String value;
109118

110119
ScriptElementKind(String value) {

0 commit comments

Comments
 (0)