Skip to content

Commit 6e5a7bd

Browse files
committed
fmt
1 parent 4b270f9 commit 6e5a7bd

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

internal/checker/types.go

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -35,11 +35,11 @@ const (
3535
type ContextFlags uint32
3636

3737
const (
38-
ContextFlagsNone ContextFlags = 0
39-
ContextFlagsSignature ContextFlags = 1 << 0 // Obtaining contextual signature
40-
ContextFlagsNoConstraints ContextFlags = 1 << 1 // Don't obtain type variable constraints
38+
ContextFlagsNone ContextFlags = 0
39+
ContextFlagsSignature ContextFlags = 1 << 0 // Obtaining contextual signature
40+
ContextFlagsNoConstraints ContextFlags = 1 << 1 // Don't obtain type variable constraints
4141
ContextFlagsIgnoreNodeInferences ContextFlags = 1 << 2 // Ignore inference to current node and parent nodes out to the containing call for, for example, completions
42-
ContextFlagsSkipBindingPatterns ContextFlags = 1 << 3 // Ignore contextual types applied by binding patterns
42+
ContextFlagsSkipBindingPatterns ContextFlags = 1 << 3 // Ignore contextual types applied by binding patterns
4343
)
4444

4545
type TypeFormatFlags uint32

0 commit comments

Comments
 (0)