Changeset 179846 in webkit


Ignore:
Timestamp:
Feb 9, 2015 3:19:20 PM (9 years ago)
Author:
Brian Burg
Message:

Web Inspector: Uncaught exception when reporting wrong backend command call signature
https://bugs.webkit.org/show_bug.cgi?id=141401

Reviewed by Joseph Pecoraro.

  • UserInterface/Protocol/InspectorBackend.js:

(InspectorBackend.Command.prototype._invokeWithArguments): Fix wrong variable name.

Location:
trunk/Source/WebInspectorUI
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebInspectorUI/ChangeLog

    r179755 r179846  
     12015-02-09  Brian J. Burg  <burg@cs.washington.edu>
     2
     3        Web Inspector: Uncaught exception when reporting wrong backend command call signature
     4        https://bugs.webkit.org/show_bug.cgi?id=141401
     5
     6        Reviewed by Joseph Pecoraro.
     7
     8        * UserInterface/Protocol/InspectorBackend.js:
     9        (InspectorBackend.Command.prototype._invokeWithArguments): Fix wrong variable name.
     10
    1112015-02-06  Jono Wells  <jonowells@apple.com>
    212
  • trunk/Source/WebInspectorUI/UserInterface/Protocol/InspectorBackend.js

    r175478 r179846  
    455455
    456456            if (!commandArguments.length && !optionalFlag) {
    457                 console.error("Protocol Error: Invalid number of arguments for method '" + instance.qualifiedName + "' call. It must have the following arguments '" + JSON.stringify(signature) + "'.");
     457                console.error("Protocol Error: Invalid number of arguments for method '" + instance.qualifiedName + "' call. It must have the following arguments '" + JSON.stringify(instance.callSignature) + "'.");
    458458                return;
    459459            }
Note: See TracChangeset for help on using the changeset viewer.