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 df2cf90 commit 8cbab81Copy full SHA for 8cbab81
src/codec.ts
@@ -6,20 +6,20 @@ export const enum Tag {
6
ORIGINAL_SCOPE_START = 0x1,
7
ORIGINAL_SCOPE_END = 0x2,
8
ORIGINAL_SCOPE_VARIABLES = 0x3,
9
- GENERATED_RANGE_START = 0x5,
10
- GENERATED_RANGE_END = 0x6,
11
- GENERATED_RANGE_BINDINGS = 0x7,
12
- GENERATED_RANGE_CALL_SITE = 0x9,
+ GENERATED_RANGE_START = 0x4,
+ GENERATED_RANGE_END = 0x5,
+ GENERATED_RANGE_BINDINGS = 0x6,
+ GENERATED_RANGE_CALL_SITE = 0x8,
13
}
14
15
export const enum EncodedTag {
16
ORIGINAL_SCOPE_START = "B", // 0x1
17
ORIGINAL_SCOPE_END = "C", // 0x2
18
ORIGINAL_SCOPE_VARIABLES = "D", // 0x3
19
- GENERATED_RANGE_START = "F", // 0x5
20
- GENERATED_RANGE_END = "G", // 0x6
21
- GENERATED_RANGE_BINDINGS = "H", // 0x7
22
- GENERATED_RANGE_CALL_SITE = "J", // 0x9
+ GENERATED_RANGE_START = "E", // 0x4
+ GENERATED_RANGE_END = "F", // 0x5
+ GENERATED_RANGE_BINDINGS = "G", // 0x6
+ GENERATED_RANGE_CALL_SITE = "I", // 0x8
23
24
25
export const enum OriginalScopeFlags {
0 commit comments