Giter Site home page Giter Site logo

Comments (3)

DanTup avatar DanTup commented on August 16, 2024

Turns out we already support this. The types did not suggest so (which was fixed in 04dbe4e) but the code was all good (since in TS, debugSessionId as string doesn't do anything, and allows the null/undefined through!).

Just needs some testing from DevTools.

from dart-code.

DanTup avatar DanTup commented on August 16, 2024

I tested this by forcing a null debug session ID in DevTools sidebar:

image

Then launched two debug sessions and tried to open Inspector from the DevTools sidebar. It prompted for a debug session as expected:

image

This is because it goes through the usual code path for launching DevTools pages and that checks whether the target page requires a debug session and if one wasn't provided will prompt.

@kenzieschmoll the DevTools API classes already allow for null here too, so this is implementable today. If you pull the DevTools buttons up to the top level and pass null here, it'll do what we want.

from dart-code.

DanTup avatar DanTup commented on August 16, 2024

Actually, that's not the full story... The check for whether we need require a debug session / VM Service looks like this:

const page = devToolsPages.find((p) => p.id === pageId);
const requiresVmService = page && !page.isStaticTool;

So if we don't recognise the page, we'll assume a session is not required. This will be problematic for extensions (which Dart-Code doesn't know about).

So we need an API change to allow DevTools to dictate whether we prompt for a session or if one is not necessary (because it's a static tool). I'll look at adding something to support this distinction.

from dart-code.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.