We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ac08ebc commit df66ee2Copy full SHA for df66ee2
src/index.ts
@@ -129,7 +129,15 @@ export enum SnippetLevel {
129
/** inside a variable value, argument call, default value or similar */
130
value = 3,
131
/** Other scope types (for example outside of braces but after a function definition or some other invalid syntax place) */
132
- other = 4
+ other = 4,
133
+ /** Inside a string literal. */
134
+ strings = 5,
135
+ /** Inside a normal comment */
136
+ comment = 6,
137
+ /** Inside a documentation comment */
138
+ docComment = 7,
139
+ /** Inside explicitly declared mixin templates */
140
+ mixinTemplate = 8,
141
}
142
143
/**
0 commit comments