-
-
Notifications
You must be signed in to change notification settings - Fork 2.8k
feat(typescript-estree): allow providing code as a ts.SourceFile #5892
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
bradzacher
merged 4 commits into
typescript-eslint:v6
from
JoshuaKGoldberg:parse-for-eslint-ts-source-file
Nov 16, 2022
Merged
Changes from all commits
Commits
Show all changes
4 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
import * as ts from 'typescript'; | ||
|
||
export function isSourceFile(code: unknown): code is ts.SourceFile { | ||
if (typeof code !== 'object' || code == null) { | ||
return false; | ||
} | ||
|
||
const maybeSourceFile = code as Partial<ts.SourceFile>; | ||
return ( | ||
maybeSourceFile.kind === ts.SyntaxKind.SourceFile && | ||
typeof maybeSourceFile.getFullText === 'function' | ||
); | ||
} | ||
|
||
export function getCodeText(code: string | ts.SourceFile): string { | ||
return isSourceFile(code) ? code.getFullText(code) : code; | ||
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
import * as ts from 'typescript'; | ||
|
||
import { getCodeText, isSourceFile } from '../../src/source-files'; | ||
|
||
describe('isSourceFile', () => { | ||
it.each([null, undefined, {}, { getFullText: (): string => '', text: '' }])( | ||
`returns false when given %j`, | ||
input => { | ||
expect(isSourceFile(input)).toBe(false); | ||
}, | ||
); | ||
|
||
it('returns true when given a real source file', () => { | ||
const input = ts.createSourceFile('test.ts', '', ts.ScriptTarget.ESNext); | ||
|
||
expect(isSourceFile(input)).toBe(true); | ||
}); | ||
}); | ||
|
||
describe('getCodeText', () => { | ||
it('returns the code when code is provided as a string', () => { | ||
const code = '// Hello world'; | ||
|
||
expect(getCodeText(code)).toBe(code); | ||
}); | ||
|
||
it('returns the code when code is provided as a source file', () => { | ||
const code = '// Hello world'; | ||
const sourceFile = ts.createSourceFile( | ||
'test.ts', | ||
code, | ||
ts.ScriptTarget.ESNext, | ||
); | ||
|
||
expect(getCodeText(sourceFile)).toBe(code); | ||
}); | ||
}); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
FYI @Quramy - is there anything else you'd need/want done to help with the use case described in #774?
cc @mhartington - you were showing me using Quramy's language service plugin. I'm betting this will speed it up ever so slightly (though I'd be surprised if file parsing was a major bottleneck). ✨