-
Notifications
You must be signed in to change notification settings - Fork 740
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
Debugger breaks when there's comments in the code #118
Comments
This should be fixed now on |
Thank you ! It still remains a small bug. When your code exceed a certain size, the code editor does not take into account your modifications. |
Here is an exemple of code : `module.exports = async ({ page }) => { var cookies = ""; /**
'use strict'; const fs = require('fs'); const inputFiles = ['./src/.js', './src/rich-responses/.js']; const webhookFilename = 'webhook-client.md'; const templateData = jsdoc2md.getTemplateDataSync({files: inputFiles}); let output = '' output = '' exports.rewriteAnchor = function (anchor) { const fs = require('fs'); const inputFiles = ['./src/.js', './src/rich-responses/.js']; const webhookFilename = 'webhook-client.md'; const templateData = jsdoc2md.getTemplateDataSync({files: inputFiles}); let output = '' output = '' exports.rewriteAnchor = function (anchor) { const fs = require('fs'); const inputFiles = ['./src/.js', './src/rich-responses/.js']; const webhookFilename = 'webhook-client.md'; const templateData = jsdoc2md.getTemplateDataSync({files: inputFiles}); let output = '' output = '' exports.rewriteAnchor = function (anchor) { const inputFiles = ['./src/.js', './src/rich-responses/.js']; const webhookFilename = 'webhook-client.md'; const templateData = jsdoc2md.getTemplateDataSync({files: inputFiles}); let output = '' output = '' exports.rewriteAnchor = function (anchor) { const inputFiles = ['./src/.js', './src/rich-responses/.js']; const webhookFilename = 'webhook-client.md'; const templateData = jsdoc2md.getTemplateDataSync({files: inputFiles}); let output = '' output = '' exports.rewriteAnchor = function (anchor) { try{ } await page.goto('https://www.google.com'); Try to change the final url, you'll see that it does not work. Regards |
Wow! That’s a large body of code. We’re working towards another way of debugging which I think would fit this use-case better... but might be a bit before it lands. Stay tuned! |
Likely an issue with how we transport code over the wire (part of the URI). Might have to send everything over as a cookie vs stringifying it.
The text was updated successfully, but these errors were encountered: