Skip to content

Commit 6be2d0a

Browse files
committed
reorder parameters
1 parent aa1dd4c commit 6be2d0a

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

dwds/lib/src/debugging/dart_runtime_debugger.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -235,8 +235,8 @@ class DartRuntimeDebugger {
235235
/// Generates a JS expression to retrieve a library variable.
236236
/// This method is only available for the `RequireStrategy`.
237237
String getLibraryVariableJsExpression(
238-
String libraryName,
239238
String libraryUri,
239+
String libraryName,
240240
String variable,
241241
) {
242242
return '${_loadStrategy.loadModuleSnippet}("dart_sdk").dart.getModuleLibraries("$libraryName")["$libraryUri"]["$variable"]';

dwds/lib/src/debugging/inspector.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -380,8 +380,8 @@ class AppInspector implements AppInspectorInterface {
380380
return jsEvaluate(
381381
globalToolConfiguration.loadStrategy.dartRuntimeDebugger
382382
.getLibraryVariableJsExpression(
383-
libraryName,
384383
libraryUri,
384+
libraryName,
385385
variableName,
386386
),
387387
);

0 commit comments

Comments
 (0)