This repository was archived by the owner on Jan 11, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 746
Added step over functionality for yield (#4232) #4276
Merged
codehag
merged 2 commits into
firefox-devtools:master
from
jackjocross:feature/step-over-yield
Oct 5, 2017
Merged
Changes from all commits
Commits
Show all changes
2 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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,4 @@ | ||
| function* foo() { | ||
| yield 1; | ||
| yield 2; | ||
| } |
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 |
|---|---|---|
|
|
@@ -2,34 +2,53 @@ import { getNextStep } from "../steps"; | |
| import { getSource } from "./helpers"; | ||
|
|
||
| describe("getNextStep", () => { | ||
| it("first await call", () => { | ||
| const source = getSource("async"); | ||
| const pausePosition = { line: 8, column: 2, sourceId: "async" }; | ||
| expect(getNextStep(source, pausePosition)).toEqual({ | ||
| ...pausePosition, | ||
| line: 9 | ||
| describe("await", () => { | ||
| it("first await call", () => { | ||
| const source = getSource("async"); | ||
| const pausePosition = { line: 8, column: 2, sourceId: "async" }; | ||
| expect(getNextStep(source, pausePosition)).toEqual({ | ||
| ...pausePosition, | ||
| line: 9 | ||
| }); | ||
| }); | ||
| }); | ||
|
|
||
| it("first await call expression", () => { | ||
| const source = getSource("async"); | ||
| const pausePosition = { line: 8, column: 9, sourceId: "async" }; | ||
| expect(getNextStep(source, pausePosition)).toEqual({ | ||
| ...pausePosition, | ||
| line: 9, | ||
| column: 2 | ||
| it("first await call expression", () => { | ||
| const source = getSource("async"); | ||
| const pausePosition = { line: 8, column: 9, sourceId: "async" }; | ||
| expect(getNextStep(source, pausePosition)).toEqual({ | ||
| ...pausePosition, | ||
| line: 9, | ||
| column: 2 | ||
| }); | ||
| }); | ||
|
|
||
| it("second await call", () => { | ||
| const source = getSource("async"); | ||
| const pausePosition = { line: 9, column: 2, sourceId: "async" }; | ||
| expect(getNextStep(source, pausePosition)).toEqual(null); | ||
| }); | ||
| }); | ||
|
|
||
| it("second await call", () => { | ||
| const source = getSource("async"); | ||
| const pausePosition = { line: 9, column: 2, sourceId: "async" }; | ||
| expect(getNextStep(source, pausePosition)).toEqual(null); | ||
| it("second call expression", () => { | ||
| const source = getSource("async"); | ||
| const pausePosition = { line: 9, column: 9, sourceId: "async" }; | ||
| expect(getNextStep(source, pausePosition)).toEqual(null); | ||
| }); | ||
| }); | ||
|
|
||
| it("second call expression", () => { | ||
| const source = getSource("async"); | ||
| const pausePosition = { line: 9, column: 9, sourceId: "async" }; | ||
| expect(getNextStep(source, pausePosition)).toEqual(null); | ||
| describe("yield", () => { | ||
|
Contributor
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. 👍 nice test! |
||
| it("first yield call", () => { | ||
| const source = getSource("generators"); | ||
| const pausePosition = { line: 2, column: 2, sourceId: "generators" }; | ||
| expect(getNextStep(source, pausePosition)).toEqual({ | ||
| ...pausePosition, | ||
| line: 3 | ||
| }); | ||
| }); | ||
|
|
||
| it("second yield call", () => { | ||
| const source = getSource("generators"); | ||
| const pausePosition = { line: 3, column: 2, sourceId: "generators" }; | ||
| expect(getNextStep(source, pausePosition)).toEqual(null); | ||
| }); | ||
| }); | ||
| }); | ||
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.
Uh oh!
There was an error while loading. Please reload this page.
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.
this should be separated, or the function (getAsyncExpression) renamed (maybe to getSteppableExpression ?), since yield is not async and this would lead to misunderstandings later on.
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.
I ended up going with
getSteppableExpressionfor now as separating out the two cases led to more conditional logic living ingetNextStep.