File tree Expand file tree Collapse file tree 1 file changed +11
-2
lines changed Expand file tree Collapse file tree 1 file changed +11
-2
lines changed Original file line number Diff line number Diff line change @@ -26,8 +26,17 @@ const mainExtensionMarker = '/* MAIN_EXTENSION_MARKER */';
2626
2727const _clientScript = 'dwds/src/injected/client' ;
2828
29- /// Handles injecting the DWDS client and embedding debugging related
30- /// information.
29+ /// Handles injecting the DWDS client and embedding debugging-related information.
30+ ///
31+ /// This class is responsible for modifying the served JavaScript files
32+ /// to include the injected DWDS client, enabling debugging capabilities
33+ /// and source mapping when running in a browser environment.
34+ ///
35+ /// The `_enableDebuggingSupport` flag determines whether debugging-related
36+ /// functionality should be included:
37+ /// - When `true` , the DWDS client is injected, enabling debugging features.
38+ /// - When `false` , debugging support is disabled, meaning the application will
39+ /// run without debugging.
3140class DwdsInjector {
3241 final Future <String >? _extensionUri;
3342 final _devHandlerPaths = StreamController <String >();
You can’t perform that action at this time.
0 commit comments