FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
TypeScript/src/services/codeFixProvider.ts at master · vikerman/TypeScript · GitHub
vikerman
/
TypeScript
Public
forked from
microsoft/TypeScript
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Pull requests
0
Actions
Projects
Wiki
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Wiki
Security and quality
Insights
Expand file tree
Breadcrumbs
TypeScript
/
src
/
services
/
codeFixProvider.ts
Copy path
More file actions
More file actions
Latest commit
History
History
History
51 lines (44 loc) · 1.5 KB
Breadcrumbs
TypeScript
/
src
/
services
/
codeFixProvider.ts
Copy path
File metadata and controls
51 lines (44 loc) · 1.5 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
/*
@internal
*/
namespace
ts
{
export
interface
CodeFix
{
errorCodes
:
number
[
]
;
getCodeActions
(
context
:
CodeFixContext
)
:
CodeAction
[
]
|
undefined
;
}
export
interface
CodeFixContext
{
errorCode
:
number
;
sourceFile
:
SourceFile
;
span
:
TextSpan
;
program
:
Program
;
newLineCharacter
:
string
;
host
:
LanguageServiceHost
;
cancellationToken
:
CancellationToken
;
rulesProvider
:
formatting
.
RulesProvider
;
}
export
namespace
codefix
{
const
codeFixes
:
CodeFix
[
]
[
]
=
[
]
;
export
function
registerCodeFix
(
codeFix
:
CodeFix
)
{
forEach
(
codeFix
.
errorCodes
,
error
=>
{
let
fixes
=
codeFixes
[
error
]
;
if
(
!
fixes
)
{
fixes
=
[
]
;
codeFixes
[
error
]
=
fixes
;
}
fixes
.
push
(
codeFix
)
;
}
)
;
}
export
function
getSupportedErrorCodes
(
)
{
return
Object
.
keys
(
codeFixes
)
;
}
export
function
getFixes
(
context
:
CodeFixContext
)
:
CodeAction
[
]
{
const
fixes
=
codeFixes
[
context
.
errorCode
]
;
let
allActions
:
CodeAction
[
]
=
[
]
;
forEach
(
fixes
,
f
=>
{
const
actions
=
f
.
getCodeActions
(
context
)
;
if
(
actions
&&
actions
.
length
>
0
)
{
allActions
=
allActions
.
concat
(
actions
)
;
}
}
)
;
return
allActions
;
}
}
}
Back
|
FazBrowse Home
|
New Git URL