Skip to content

Commit

Permalink
add new snippet levels
Browse files Browse the repository at this point in the history
  • Loading branch information
WebFreak001 committed Jul 20, 2021
1 parent ac08ebc commit df66ee2
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,15 @@ export enum SnippetLevel {
/** inside a variable value, argument call, default value or similar */
value = 3,
/** Other scope types (for example outside of braces but after a function definition or some other invalid syntax place) */
other = 4
other = 4,
/** Inside a string literal. */
strings = 5,
/** Inside a normal comment */
comment = 6,
/** Inside a documentation comment */
docComment = 7,
/** Inside explicitly declared mixin templates */
mixinTemplate = 8,
}

/**
Expand Down

0 comments on commit df66ee2

Please sign in to comment.