Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/madarauchiha/6to5-bug-showcase
A minimal showcase to demonstrate debugging bug with 6to5. Issue link in README.
https://github.com/madarauchiha/6to5-bug-showcase
Last synced: 12 days ago
JSON representation
A minimal showcase to demonstrate debugging bug with 6to5. Issue link in README.
- Host: GitHub
- URL: https://github.com/madarauchiha/6to5-bug-showcase
- Owner: MadaraUchiha
- Created: 2015-01-13T20:07:59.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2015-01-13T20:14:25.000Z (almost 10 years ago)
- Last Synced: 2024-10-19T22:59:48.461Z (26 days ago)
- Language: JavaScript
- Size: 234 KB
- Stars: 0
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## Breakpoint bug with 6to5
This project is a minimal reproducible test case for failing breakpoints with 6to5.
To reproduce, clone this repository, run `npm install`, and set a breakpoint on line 13 of class.js.
## Expected result
Try to evaluate what `this` is at that point. The expected is the `MathStuff` object.## Actual result
`this` is undefined, stepping over doesn't seem to do anything and the stack shows unrelated things entirely.## 6to5 issue
Can be seen on [6to5#481](https://github.com/6to5/6to5/issues/481)