-
Notifications
You must be signed in to change notification settings - Fork 51
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
Fix support for gts extensions remaining in emitted declarations #648
Closed
NullVoxPopuli
wants to merge
8
commits into
typed-ember:main
from
NullVoxPopuli:fix-explicit-extension-gts-imports
Closed
Changes from all commits
Commits
Show all changes
8 commits
Select commit
Hold shift + click to select a range
d7f3aa0
Reproduce issue for https://github.com/typed-ember/glint/issues/628
NullVoxPopuli 2636b4b
wip
NullVoxPopuli 4663cd2
This fails for just 'ts' extensions, too
NullVoxPopuli 5ea04d7
Updates
NullVoxPopuli d09b44e
Prettier
NullVoxPopuli b13abd9
Rollback testTimeout changes
NullVoxPopuli ec159b6
the transform api types feel very wrong -- having to do some ... lies
NullVoxPopuli 2ad6b6a
Update snapshots for custom-extensions test
NullVoxPopuli 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 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 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 |
---|---|---|
@@ -1,6 +1,6 @@ | ||
import { rewriteModule, TransformedModule, rewriteDiagnostic } from '../../src/transform/index.js'; | ||
import { stripIndent } from 'common-tags'; | ||
import { describe, test, expect } from 'vitest'; | ||
import { describe, test, expect, beforeEach } from 'vitest'; | ||
import { Range, SourceFile } from '../../src/transform/template/transformed-module.js'; | ||
import * as ts from 'typescript'; | ||
import { assert } from '../../src/transform/util.js'; | ||
|
@@ -464,7 +464,11 @@ describe('Transform: Source-to-source offset mapping', () => { | |
`, | ||
}; | ||
|
||
const rewritten = rewriteModule(ts, { script: source }, glimmerxEnvironment)!; | ||
let rewritten; | ||
|
||
beforeEach(() => { | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. without these changes, debugging was super troll time |
||
rewritten = rewriteModule(ts, { script: source }, glimmerxEnvironment)!; | ||
}); | ||
|
||
test('bounds that cross a rewritten span', () => { | ||
let originalStart = source.contents.indexOf('// start'); | ||
|
@@ -524,8 +528,12 @@ describe('Diagnostic offset mapping', () => { | |
`, | ||
}; | ||
|
||
const transformedModule = rewriteModule(ts, { script: source }, glimmerxEnvironment); | ||
assert(transformedModule); | ||
let transformedModule; | ||
|
||
beforeEach(() => { | ||
transformedModule = rewriteModule(ts, { script: source }, glimmerxEnvironment); | ||
assert(transformedModule); | ||
}); | ||
|
||
test('without related information', () => { | ||
let category = ts.DiagnosticCategory.Error; | ||
|
This file contains 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
Oops, something went wrong.
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.
the declarations for this are, at present, emitted as
./vanilla.ts
, which is wrong.To fix, either needs to happen:
.ts
extension sovanilla.d.ts
matches with the emitted correspondingvanilla.js
vanilla.ts.d.ts
file, along the same lines as what I suggested originally with emittingGreeting.gts.d.ts
This PR is currently going the way of removing all extensions.