-
Notifications
You must be signed in to change notification settings - Fork 74
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(concatenate): nested named fn expr conflicted #1357
Merged
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 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
8 changes: 8 additions & 0 deletions
8
...ixtures/mako.scope-hoisting.renaming_conflicted_with_nested_named_fn_expr_ident/expect.js
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 |
---|---|---|
@@ -0,0 +1,8 @@ | ||
const { | ||
injectSimpleJest, | ||
parseBuildResult | ||
} = require("../../../scripts/test-utils"); | ||
const { files } = parseBuildResult(__dirname); | ||
injectSimpleJest(); | ||
|
||
require("./dist/index.js"); | ||
stormslowly marked this conversation as resolved.
Show resolved
Hide resolved
|
3 changes: 3 additions & 0 deletions
3
...fixtures/mako.scope-hoisting.renaming_conflicted_with_nested_named_fn_expr_ident/file1.js
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 |
---|---|---|
@@ -0,0 +1,3 @@ | ||
export function addTarget() { | ||
return "ok"; | ||
} |
7 changes: 7 additions & 0 deletions
7
...fixtures/mako.scope-hoisting.renaming_conflicted_with_nested_named_fn_expr_ident/index.js
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 |
---|---|---|
@@ -0,0 +1,7 @@ | ||
const root = require("./module"); | ||
|
||
it("should detect nested named fn expr ident", () => { | ||
let target = root.c.addTarget(); | ||
|
||
expect(target).toBe("OK"); | ||
}); |
9 changes: 9 additions & 0 deletions
9
.../mako.scope-hoisting.renaming_conflicted_with_nested_named_fn_expr_ident/mako.config.json
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 |
---|---|---|
@@ -0,0 +1,9 @@ | ||
{ | ||
"entry": { | ||
"index": "./index.js" | ||
}, | ||
"optimization": { | ||
"skipModules": true, | ||
"concatenateModules": true | ||
} | ||
} |
22 changes: 22 additions & 0 deletions
22
...ixtures/mako.scope-hoisting.renaming_conflicted_with_nested_named_fn_expr_ident/module.js
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 |
---|---|---|
@@ -0,0 +1,22 @@ | ||
import { addTarget as _addTarget } from "./file1"; | ||
|
||
const createC = function () { | ||
const methods = [ | ||
{ | ||
key: "addTarget", | ||
// the nested function expression | ||
value: function addTarget() { | ||
_addTarget(); | ||
return "OK"; | ||
}, | ||
}, | ||
]; | ||
|
||
return { | ||
[methods[0].key]: methods[0].value, | ||
}; | ||
}; | ||
|
||
const c = createC(); | ||
|
||
export { c }; |
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.
Tip
Codebase Verification
确保测试工具的正确集成
从
../../../scripts/test-utils
导入的injectSimpleJest
函数未在scripts/test-utils.js
文件中找到。请确认该函数是否存在或名称是否正确。injectSimpleJest
函数缺失Analysis chain
确保测试工具的正确集成
请确保从
../../../scripts/test-utils
导入的injectSimpleJest
和parseBuildResult
函数已经正确实现,并且与当前测试场景兼容。Scripts executed
The following scripts were executed for the analysis:
Script:
Length of output: 139
Script:
Length of output: 164
Script:
Length of output: 218
Script:
Length of output: 64